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