結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
52,176 KB
testcase_01 AC 34 ms
53,600 KB
testcase_02 AC 34 ms
53,296 KB
testcase_03 AC 33 ms
52,572 KB
testcase_04 AC 33 ms
52,880 KB
testcase_05 AC 33 ms
52,924 KB
testcase_06 AC 43 ms
61,416 KB
testcase_07 AC 53 ms
71,024 KB
testcase_08 AC 73 ms
76,356 KB
testcase_09 AC 89 ms
76,696 KB
testcase_10 AC 179 ms
79,180 KB
testcase_11 AC 181 ms
78,944 KB
testcase_12 AC 183 ms
79,120 KB
testcase_13 AC 183 ms
79,600 KB
testcase_14 AC 182 ms
79,808 KB
testcase_15 AC 188 ms
79,608 KB
testcase_16 AC 201 ms
79,716 KB
testcase_17 AC 34 ms
52,292 KB
testcase_18 AC 33 ms
52,872 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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