結果

問題 No.9009 改行区切りで与えられる数値データの合計値を求める(テスト用)
ユーザー tohohogisutohohogisu
提出日時 2022-09-28 13:16:24
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 184 ms / 3,000 ms
コード長 35 bytes
コンパイル時間 231 ms
コンパイル使用メモリ 82,520 KB
実行使用メモリ 112,824 KB
最終ジャッジ日時 2024-12-22 17:31:42
合計ジャッジ時間 2,916 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
51,632 KB
testcase_01 AC 38 ms
52,372 KB
testcase_02 AC 39 ms
52,024 KB
testcase_03 AC 38 ms
51,588 KB
testcase_04 AC 39 ms
52,120 KB
testcase_05 AC 41 ms
51,788 KB
testcase_06 AC 40 ms
52,348 KB
testcase_07 AC 51 ms
63,116 KB
testcase_08 AC 69 ms
78,472 KB
testcase_09 AC 84 ms
83,724 KB
testcase_10 AC 165 ms
104,992 KB
testcase_11 AC 167 ms
105,208 KB
testcase_12 AC 167 ms
105,412 KB
testcase_13 AC 174 ms
109,264 KB
testcase_14 AC 172 ms
107,296 KB
testcase_15 AC 171 ms
107,676 KB
testcase_16 AC 184 ms
112,824 KB
testcase_17 AC 40 ms
51,668 KB
testcase_18 AC 41 ms
51,868 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,*a=map(int,open(0))
print(sum(a))
0