結果

問題 No.9009 改行区切りで与えられる数値データの合計値を求める(テスト用)
ユーザー ABKZABKZ
提出日時 2021-06-04 11:22:59
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 205 ms / 3,000 ms
コード長 71 bytes
コンパイル時間 284 ms
コンパイル使用メモリ 82,160 KB
実行使用メモリ 80,056 KB
最終ジャッジ日時 2024-11-18 17:08:46
合計ジャッジ時間 3,227 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,840 KB
testcase_01 AC 35 ms
52,424 KB
testcase_02 AC 34 ms
52,320 KB
testcase_03 AC 35 ms
52,428 KB
testcase_04 AC 35 ms
52,448 KB
testcase_05 AC 36 ms
53,192 KB
testcase_06 AC 47 ms
61,948 KB
testcase_07 AC 59 ms
71,268 KB
testcase_08 AC 73 ms
76,312 KB
testcase_09 AC 90 ms
76,736 KB
testcase_10 AC 177 ms
79,012 KB
testcase_11 AC 177 ms
79,108 KB
testcase_12 AC 183 ms
79,464 KB
testcase_13 AC 185 ms
79,508 KB
testcase_14 AC 186 ms
79,376 KB
testcase_15 AC 194 ms
79,260 KB
testcase_16 AC 205 ms
80,056 KB
testcase_17 AC 33 ms
52,176 KB
testcase_18 AC 34 ms
52,740 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
ans = sum([int(input()) for _ in range(n)])
print(ans)
0