# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
1010631 | 2024-06-29T08:37:41 Z | bornag | 성질 급한 지학이 (IZhO13_crazy) | C++14 | 0 ms | 436 KB |
#include <bits/stdc++.h> using namespace std; #define ll long long const ll maxn = 1007; ll t, n; ll seats[maxn]; void solve(){ cin >> n; for(int i = 0; i < n; i++) cin >> seats[i], seats[i]--; cout << "0\n"; } int main(){ cin >> t; while(t--) solve(); }
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 0 ms | 436 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |