Submission #1010631

#TimeUsernameProblemLanguageResultExecution timeMemory
1010631bornagCrazy old lady (IZhO13_crazy)C++14
0 / 100
0 ms436 KiB
#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();
}
#Verdict Execution timeMemoryGrader output
Fetching results...