結果
問題 |
No.8100 始業式
|
ユーザー |
![]() |
提出日時 | 2023-03-31 21:28:40 |
言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 307 bytes |
コンパイル時間 | 1,561 ms |
コンパイル使用メモリ | 190,792 KB |
最終ジャッジ日時 | 2025-02-11 19:56:20 |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | WA * 1 |
ソースコード
#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; } }