結果

問題 No.9009 改行区切りで与えられる数値データの合計値を求める(テスト用)
ユーザー disneyresidentsdisneyresidents
提出日時 2020-10-23 02:10:59
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 224 ms / 3,000 ms
コード長 61 bytes
コンパイル時間 142 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 79,744 KB
最終ジャッジ日時 2024-07-21 09:42:31
合計ジャッジ時間 2,955 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
51,456 KB
testcase_01 AC 34 ms
51,456 KB
testcase_02 AC 34 ms
51,584 KB
testcase_03 AC 34 ms
51,456 KB
testcase_04 AC 34 ms
51,712 KB
testcase_05 AC 35 ms
52,096 KB
testcase_06 AC 47 ms
60,288 KB
testcase_07 AC 62 ms
69,888 KB
testcase_08 AC 83 ms
76,160 KB
testcase_09 AC 98 ms
76,416 KB
testcase_10 AC 186 ms
78,848 KB
testcase_11 AC 183 ms
78,976 KB
testcase_12 AC 194 ms
79,232 KB
testcase_13 AC 197 ms
79,488 KB
testcase_14 AC 205 ms
79,104 KB
testcase_15 AC 224 ms
79,104 KB
testcase_16 AC 204 ms
79,744 KB
testcase_17 AC 34 ms
51,328 KB
testcase_18 AC 34 ms
51,712 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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