結果
問題 | No.3100 始業式 |
ユーザー | 3mEhsfd8aG5jx2t |
提出日時 | 2023-03-31 22:27:35 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 910 bytes |
コンパイル時間 | 2,175 ms |
コンパイル使用メモリ | 201,116 KB |
実行使用メモリ | 6,816 KB |
最終ジャッジ日時 | 2024-09-23 01:15:19 |
合計ジャッジ時間 | 2,405 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; #pragma GCC target("avx2") #pragma GCC optimize("O3") #pragma GCC optimize("unroll-loops") 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() { ios::sync_with_stdio(false); std::cin.tie(nullptr); int T; cin >> T; string c; REP(_, T) { int N; cin >> N; int ans = 0; REP(i, N) { int x; cin >> x; ans += x; } cout << ans << "\n"; } cout<<endl; }