結果

問題 No.9008 空白区切りで与えられる数値データの合計値を求める(テスト用)
ユーザー pypypymipypypymi
提出日時 2022-02-20 17:34:44
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 130 ms / 2,000 ms
コード長 53 bytes
コンパイル時間 288 ms
コンパイル使用メモリ 87,184 KB
実行使用メモリ 114,640 KB
最終ジャッジ日時 2023-09-11 21:04:55
合計ジャッジ時間 3,674 ms
ジャッジサーバーID
(参考情報)
judge14 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 72 ms
71,176 KB
testcase_01 AC 71 ms
71,112 KB
testcase_02 AC 72 ms
71,332 KB
testcase_03 AC 76 ms
71,396 KB
testcase_04 AC 72 ms
71,340 KB
testcase_05 AC 72 ms
71,248 KB
testcase_06 AC 74 ms
71,232 KB
testcase_07 AC 76 ms
75,716 KB
testcase_08 AC 83 ms
79,860 KB
testcase_09 AC 87 ms
83,052 KB
testcase_10 AC 127 ms
114,364 KB
testcase_11 AC 124 ms
114,428 KB
testcase_12 AC 126 ms
114,456 KB
testcase_13 AC 129 ms
114,640 KB
testcase_14 AC 128 ms
114,500 KB
testcase_15 AC 127 ms
114,636 KB
testcase_16 AC 130 ms
114,388 KB
testcase_17 AC 69 ms
71,480 KB
testcase_18 AC 69 ms
71,008 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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