結果

問題 No.9008 空白区切りで与えられる数値データの合計値を求める(テスト用)
ユーザー ABKZABKZ
提出日時 2021-06-04 10:25:53
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 110 ms / 2,000 ms
コード長 65 bytes
コンパイル時間 213 ms
コンパイル使用メモリ 82,444 KB
実行使用メモリ 120,588 KB
最終ジャッジ日時 2024-11-18 15:15:25
合計ジャッジ時間 2,324 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
53,148 KB
testcase_01 AC 37 ms
52,168 KB
testcase_02 AC 38 ms
52,664 KB
testcase_03 AC 39 ms
52,604 KB
testcase_04 AC 38 ms
51,952 KB
testcase_05 AC 38 ms
51,992 KB
testcase_06 AC 37 ms
52,196 KB
testcase_07 AC 42 ms
59,840 KB
testcase_08 AC 50 ms
68,216 KB
testcase_09 AC 56 ms
70,748 KB
testcase_10 AC 99 ms
116,672 KB
testcase_11 AC 97 ms
116,260 KB
testcase_12 AC 100 ms
116,444 KB
testcase_13 AC 103 ms
120,588 KB
testcase_14 AC 108 ms
119,048 KB
testcase_15 AC 102 ms
119,060 KB
testcase_16 AC 110 ms
118,884 KB
testcase_17 AC 39 ms
52,088 KB
testcase_18 AC 38 ms
52,960 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = input()
output = sum(map(int, input().split()))
print(output)
0