# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
87479 | 2018-11-30T23:23:51 Z | zoooma13 | Vudu (COCI15_vudu) | C++14 | 1000 ms | 66560 KB |
#include <bits/stdc++.h> #include <ext/pb_ds/assoc_container.hpp> #include <ext/pb_ds/tree_policy.hpp> using namespace __gnu_pbds; using namespace std; template <typename T> using ordered_set = tree<T, null_type, less_equal<T>, rb_tree_tag, tree_order_statistics_node_update>; #define MAX_N 1000006 int N; long long A[MAX_N]; int P; int main() { scanf("%d",&N); for(int i=1; i<=N; i++) scanf("%d",&A[i]); scanf("%d",&P); for(int i=1; i<=N; i++) A[i] += A[i-1]-P; long long ans = 0; ordered_set <long long> os; for(int i=0; i<=N; i++){ ans += os.order_of_key(A[i]+1); os.insert(A[i]); } cout << ans << endl; }
Compilation message
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 7 ms | 888 KB | Output is correct |
2 | Correct | 6 ms | 924 KB | Output is correct |
3 | Correct | 5 ms | 924 KB | Output is correct |
4 | Execution timed out | 1028 ms | 66560 KB | Time limit exceeded |
5 | Runtime error | 501 ms | 66560 KB | Memory limit exceeded: We have a known bug that the memory usage is measured incorrectly (possibly because of Meltdown/Spectre patch), so your solution may be correct. Please submit again. Sorry for the inconvenience. |
6 | Runtime error | 863 ms | 66560 KB | Memory limit exceeded: We have a known bug that the memory usage is measured incorrectly (possibly because of Meltdown/Spectre patch), so your solution may be correct. Please submit again. Sorry for the inconvenience. |
7 | Runtime error | 813 ms | 66560 KB | Memory limit exceeded: We have a known bug that the memory usage is measured incorrectly (possibly because of Meltdown/Spectre patch), so your solution may be correct. Please submit again. Sorry for the inconvenience. |
8 | Runtime error | 779 ms | 66560 KB | Memory limit exceeded: We have a known bug that the memory usage is measured incorrectly (possibly because of Meltdown/Spectre patch), so your solution may be correct. Please submit again. Sorry for the inconvenience. |
9 | Runtime error | 821 ms | 66560 KB | Execution killed with signal 9 (could be triggered by violating memory limits) |
10 | Runtime error | 771 ms | 66560 KB | Memory limit exceeded: We have a known bug that the memory usage is measured incorrectly (possibly because of Meltdown/Spectre patch), so your solution may be correct. Please submit again. Sorry for the inconvenience. |