結果

問題 No.9009 改行区切りで与えられる数値データの合計値を求める(テスト用)
ユーザー tohohogisutohohogisu
提出日時 2022-09-28 13:14:47
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 235 ms / 3,000 ms
コード長 58 bytes
コンパイル時間 259 ms
コンパイル使用メモリ 82,408 KB
実行使用メモリ 80,084 KB
最終ジャッジ日時 2024-12-22 17:31:38
合計ジャッジ時間 3,318 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
51,688 KB
testcase_01 AC 40 ms
51,744 KB
testcase_02 AC 40 ms
52,132 KB
testcase_03 AC 41 ms
51,796 KB
testcase_04 AC 39 ms
52,152 KB
testcase_05 AC 40 ms
52,368 KB
testcase_06 AC 53 ms
60,608 KB
testcase_07 AC 65 ms
70,716 KB
testcase_08 AC 84 ms
76,248 KB
testcase_09 AC 102 ms
76,728 KB
testcase_10 AC 204 ms
78,960 KB
testcase_11 AC 207 ms
79,204 KB
testcase_12 AC 210 ms
79,252 KB
testcase_13 AC 224 ms
79,348 KB
testcase_14 AC 221 ms
79,148 KB
testcase_15 AC 215 ms
79,512 KB
testcase_16 AC 235 ms
80,084 KB
testcase_17 AC 39 ms
51,784 KB
testcase_18 AC 39 ms
52,260 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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