結果

問題 No.9009 改行区切りで与えられる数値データの合計値を求める(テスト用)
ユーザー pypypymipypypymi
提出日時 2022-02-20 17:33:54
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 251 ms / 3,000 ms
コード長 55 bytes
コンパイル時間 294 ms
コンパイル使用メモリ 86,516 KB
実行使用メモリ 80,968 KB
最終ジャッジ日時 2023-09-11 21:04:46
合計ジャッジ時間 4,771 ms
ジャッジサーバーID
(参考情報)
judge11 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 73 ms
71,260 KB
testcase_01 AC 73 ms
71,376 KB
testcase_02 AC 75 ms
71,148 KB
testcase_03 AC 74 ms
71,360 KB
testcase_04 AC 75 ms
70,952 KB
testcase_05 AC 75 ms
71,068 KB
testcase_06 AC 90 ms
75,296 KB
testcase_07 AC 102 ms
76,632 KB
testcase_08 AC 114 ms
77,520 KB
testcase_09 AC 130 ms
78,124 KB
testcase_10 AC 223 ms
80,080 KB
testcase_11 AC 228 ms
80,384 KB
testcase_12 AC 230 ms
80,344 KB
testcase_13 AC 234 ms
80,252 KB
testcase_14 AC 233 ms
80,696 KB
testcase_15 AC 234 ms
80,712 KB
testcase_16 AC 251 ms
80,968 KB
testcase_17 AC 73 ms
71,144 KB
testcase_18 AC 76 ms
71,084 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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