結果
問題 | No.3100 始業式 |
ユーザー | keisuke6 |
提出日時 | 2023-03-31 21:29:40 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 305 bytes |
コンパイル時間 | 1,939 ms |
コンパイル使用メモリ | 200,192 KB |
実行使用メモリ | 6,812 KB |
最終ジャッジ日時 | 2024-09-23 00:01:54 |
合計ジャッジ時間 | 2,278 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
ソースコード
#include <bits/stdc++.h> using namespace std; #define int long long signed main(){ int T; cin>>T; while(T--){ int N; cin>>N; int ans = 0; for(int i=0;i<N;i++){ int a; cin>>a; ans += a; } cout<<0<<endl; } }