# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
1157760 | aritro_ | 나일강 (IOI24_nile) | C++20 | 0 ms | 0 KiB |
#include<bits/stdc++.h>
using namespace std;
typedef long long int ll;
#define int ll
int32_t main(){
int n;
cin>>n;
int w[n],a[n],b[n];
for(int i=0;i<n;i++) cin>>w[i]>>a[i]>>b[i];
int q;
cin>>q;
while(q--){
int x;
cin>>x;
cout<<2<<endl;
}
}