結果

問題 No.9009 改行区切りで与えられる数値データの合計値を求める(テスト用)
ユーザー tomarint2tomarint2
提出日時 2019-04-01 23:47:43
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 239 ms / 3,000 ms
コード長 73 bytes
コンパイル時間 338 ms
コンパイル使用メモリ 86,700 KB
実行使用メモリ 77,360 KB
最終ジャッジ日時 2023-08-18 03:01:34
合計ジャッジ時間 3,970 ms
ジャッジサーバーID
(参考情報)
judge14 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 70 ms
71,340 KB
testcase_01 AC 69 ms
71,412 KB
testcase_02 AC 73 ms
71,216 KB
testcase_03 AC 68 ms
71,220 KB
testcase_04 AC 73 ms
71,360 KB
testcase_05 AC 71 ms
71,328 KB
testcase_06 AC 82 ms
75,340 KB
testcase_07 AC 107 ms
76,600 KB
testcase_08 AC 109 ms
77,108 KB
testcase_09 AC 125 ms
77,100 KB
testcase_10 AC 212 ms
77,100 KB
testcase_11 AC 214 ms
77,144 KB
testcase_12 AC 219 ms
77,360 KB
testcase_13 AC 227 ms
77,216 KB
testcase_14 AC 227 ms
77,156 KB
testcase_15 AC 230 ms
77,124 KB
testcase_16 AC 239 ms
77,228 KB
testcase_17 AC 69 ms
71,164 KB
testcase_18 AC 69 ms
71,424 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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