結果

問題 No.9009 改行区切りで与えられる数値データの合計値を求める(テスト用)
ユーザー オレンジジュース
提出日時 2023-07-21 01:47:28
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 30 ms / 3,000 ms
コード長 277 bytes
コンパイル時間 1,888 ms
コンパイル使用メモリ 190,844 KB
最終ジャッジ日時 2025-02-15 16:02:17
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 4
other AC * 15
権限があれば一括ダウンロードができます

ソースコード

diff #

#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;
}
0