結果
問題 |
No.9008 空白区切りで与えられる数値データの合計値を求める(テスト用)
|
ユーザー |
![]() |
提出日時 | 2023-07-21 01:47:13 |
言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 33 ms / 2,000 ms |
コード長 | 277 bytes |
コンパイル時間 | 2,073 ms |
コンパイル使用メモリ | 192,004 KB |
最終ジャッジ日時 | 2025-02-15 16:02:08 |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 4 |
other | AC * 15 |
ソースコード
#include <bits/stdc++.h> using namespace std; using ll = long long; int main() { cin.tie(0); ios_base::sync_with_stdio(0); int n; cin >> n; ll ans = 0; while (n--) { ll x; cin >> x; ans += x; } cout << ans << '\n'; return 0; }