結果

問題 No.9009 改行区切りで与えられる数値データの合計値を求める(テスト用)
ユーザー hirayuu_ychirayuu_yc
提出日時 2023-08-22 15:15:59
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 239 ms / 3,000 ms
コード長 69 bytes
コンパイル時間 1,030 ms
コンパイル使用メモリ 87,032 KB
実行使用メモリ 77,372 KB
最終ジャッジ日時 2023-08-22 15:16:06
合計ジャッジ時間 4,551 ms
ジャッジサーバーID
(参考情報)
judge15 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 70 ms
71,520 KB
testcase_01 AC 71 ms
71,076 KB
testcase_02 AC 70 ms
71,432 KB
testcase_03 AC 69 ms
71,344 KB
testcase_04 AC 70 ms
71,192 KB
testcase_05 AC 71 ms
71,160 KB
testcase_06 AC 87 ms
75,208 KB
testcase_07 AC 94 ms
76,664 KB
testcase_08 AC 108 ms
77,324 KB
testcase_09 AC 123 ms
77,044 KB
testcase_10 AC 210 ms
77,268 KB
testcase_11 AC 213 ms
77,236 KB
testcase_12 AC 226 ms
77,068 KB
testcase_13 AC 220 ms
77,236 KB
testcase_14 AC 218 ms
77,168 KB
testcase_15 AC 224 ms
77,372 KB
testcase_16 AC 239 ms
77,248 KB
testcase_17 AC 70 ms
71,244 KB
testcase_18 AC 71 ms
71,156 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(input())
ans=0
for i in range(N):
	ans+=int(input())
print(ans)
0