結果

問題 No.9009 改行区切りで与えられる数値データの合計値を求める(テスト用)
ユーザー Fullmoon85072Fullmoon85072
提出日時 2020-08-01 15:11:10
言語 PyPy3
(7.3.13)
結果
AC  
実行時間 241 ms / 3,000 ms
コード長 87 bytes
コンパイル時間 253 ms
コンパイル使用メモリ 87,068 KB
実行使用メモリ 77,460 KB
最終ジャッジ日時 2023-09-22 10:45:50
合計ジャッジ時間 4,171 ms
ジャッジサーバーID
(参考情報)
judge12 / judge15
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 69 ms
71,172 KB
testcase_01 AC 70 ms
71,420 KB
testcase_02 AC 71 ms
71,400 KB
testcase_03 AC 74 ms
71,216 KB
testcase_04 AC 70 ms
71,180 KB
testcase_05 AC 69 ms
71,524 KB
testcase_06 AC 81 ms
75,372 KB
testcase_07 AC 93 ms
76,988 KB
testcase_08 AC 108 ms
77,340 KB
testcase_09 AC 125 ms
77,092 KB
testcase_10 AC 216 ms
77,444 KB
testcase_11 AC 221 ms
77,108 KB
testcase_12 AC 221 ms
77,108 KB
testcase_13 AC 228 ms
77,292 KB
testcase_14 AC 228 ms
77,388 KB
testcase_15 AC 225 ms
77,276 KB
testcase_16 AC 241 ms
77,460 KB
testcase_17 AC 69 ms
71,424 KB
testcase_18 AC 70 ms
71,500 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())

total = 0
for num in range(N):
    total += int(input())
print(total)
0