結果

問題 No.9009 改行区切りで与えられる数値データの合計値を求める(テスト用)
ユーザー mlihua09mlihua09
提出日時 2020-08-22 11:27:00
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 187 ms / 3,000 ms
コード長 40 bytes
コンパイル時間 236 ms
コンパイル使用メモリ 82,196 KB
実行使用メモリ 112,900 KB
最終ジャッジ日時 2024-04-23 07:06:17
合計ジャッジ時間 3,242 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
51,820 KB
testcase_01 AC 37 ms
52,532 KB
testcase_02 AC 39 ms
52,400 KB
testcase_03 AC 37 ms
53,356 KB
testcase_04 AC 39 ms
52,400 KB
testcase_05 AC 38 ms
52,932 KB
testcase_06 AC 39 ms
53,476 KB
testcase_07 AC 46 ms
64,740 KB
testcase_08 AC 71 ms
78,508 KB
testcase_09 AC 82 ms
83,496 KB
testcase_10 AC 168 ms
104,756 KB
testcase_11 AC 167 ms
105,268 KB
testcase_12 AC 167 ms
105,892 KB
testcase_13 AC 177 ms
109,892 KB
testcase_14 AC 179 ms
107,380 KB
testcase_15 AC 177 ms
107,708 KB
testcase_16 AC 187 ms
112,900 KB
testcase_17 AC 39 ms
53,288 KB
testcase_18 AC 39 ms
52,196 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, *A = map(int, open(0))

print(sum(A))
0