結果
問題 | No.3100 始業式 |
ユーザー | 3mEhsfd8aG5jx2t |
提出日時 | 2023-03-31 21:46:51 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 771 bytes |
コンパイル時間 | 1,921 ms |
コンパイル使用メモリ | 199,276 KB |
実行使用メモリ | 6,816 KB |
最終ジャッジ日時 | 2024-09-23 00:23:32 |
合計ジャッジ時間 | 2,285 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
ソースコード
#include<bits/stdc++.h> #define REP(i, n) for (int i = 0; i < (int)(n); i++) using ll = long long; using namespace std; template< int sz > struct FastInput { char buf[sz + 1]; char* o; FastInput() { init(); } void init() { o = buf; buf[fread(buf, sizeof(char), sizeof(char) * sz, stdin)] = '\0'; } int64_t read() { int64_t ret = 0, sign = 1; while(*o && *o <= 32) ++o; if(*o == '-') sign *= -1, ++o; while(*o >= '0' && *o <= '9') { ret *= 10; ret += *o++ - '0'; } return ret * sign; } }; int main() { int T; scanf("%d", &T); string c; REP(_, T) { int N; scanf("%d", &N); int ans = 0; REP(i, N) { int x; cin >> x; ans += x; } cout << ans; } cout << endl; }