結果

問題 No.9009 改行区切りで与えられる数値データの合計値を求める(テスト用)
ユーザー shimonohnishishimonohnishi
提出日時 2024-06-09 13:19:26
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 204 ms / 3,000 ms
コード長 59 bytes
コンパイル時間 790 ms
コンパイル使用メモリ 82,268 KB
実行使用メモリ 80,060 KB
最終ジャッジ日時 2024-06-09 13:19:30
合計ジャッジ時間 2,739 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
51,868 KB
testcase_01 AC 31 ms
53,488 KB
testcase_02 AC 33 ms
52,668 KB
testcase_03 AC 31 ms
52,664 KB
testcase_04 AC 33 ms
53,696 KB
testcase_05 AC 33 ms
52,436 KB
testcase_06 AC 48 ms
61,604 KB
testcase_07 AC 54 ms
71,568 KB
testcase_08 AC 69 ms
76,452 KB
testcase_09 AC 86 ms
77,032 KB
testcase_10 AC 168 ms
79,076 KB
testcase_11 AC 180 ms
79,152 KB
testcase_12 AC 171 ms
79,324 KB
testcase_13 AC 204 ms
79,164 KB
testcase_14 AC 180 ms
79,420 KB
testcase_15 AC 179 ms
79,588 KB
testcase_16 AC 193 ms
80,060 KB
testcase_17 AC 33 ms
52,792 KB
testcase_18 AC 32 ms
52,068 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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