結果

問題 No.9008 空白区切りで与えられる数値データの合計値を求める(テスト用)
ユーザー Fullmoon85072Fullmoon85072
提出日時 2020-08-01 15:08:54
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 121 ms / 2,000 ms
コード長 105 bytes
コンパイル時間 338 ms
コンパイル使用メモリ 87,184 KB
実行使用メモリ 97,400 KB
最終ジャッジ日時 2023-09-22 10:43:50
合計ジャッジ時間 3,533 ms
ジャッジサーバーID
(参考情報)
judge13 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 74 ms
71,328 KB
testcase_01 AC 79 ms
71,432 KB
testcase_02 AC 73 ms
71,416 KB
testcase_03 AC 72 ms
71,272 KB
testcase_04 AC 73 ms
71,432 KB
testcase_05 AC 73 ms
71,432 KB
testcase_06 AC 73 ms
71,284 KB
testcase_07 AC 78 ms
76,480 KB
testcase_08 AC 85 ms
78,376 KB
testcase_09 AC 84 ms
78,032 KB
testcase_10 AC 112 ms
93,296 KB
testcase_11 AC 119 ms
93,656 KB
testcase_12 AC 114 ms
94,108 KB
testcase_13 AC 112 ms
94,564 KB
testcase_14 AC 117 ms
94,832 KB
testcase_15 AC 116 ms
95,392 KB
testcase_16 AC 121 ms
97,400 KB
testcase_17 AC 72 ms
71,332 KB
testcase_18 AC 72 ms
71,372 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
line = input().split(" ")

total = 0
for num in line:
    total += int(num)
print(total)
0