結果
問題 | No.3100 始業式 |
ユーザー | gyozasukisuki |
提出日時 | 2023-03-31 22:52:01 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 513 bytes |
コンパイル時間 | 1,556 ms |
コンパイル使用メモリ | 164,868 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-09-23 01:49:42 |
合計ジャッジ時間 | 1,788 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
ソースコード
#include <bits/stdc++.h> #define rep(i,l,r) for(int i=(l); i<(r); i++) #define INF ((1LL<<62)-(1LL<<31)) using namespace std; using ll = long long; using inv = vector<int>; using stv = vector<string>; using GraphI = vector<inv>; using position = pair<int,int>; int main(){ cin.tie(nullptr); ios::sync_with_stdio(false); int T; cin >> T; rep(i,0,T){ int N; cin >> N; rep(j,0,N){ int a; cin >> a; } cout << N << endl; } }