結果

問題 No.9008 空白区切りで与えられる数値データの合計値を求める(テスト用)
ユーザー KamikazeeKamikazee
提出日時 2022-09-28 13:13:59
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 133 ms / 2,000 ms
コード長 44 bytes
コンパイル時間 269 ms
コンパイル使用メモリ 86,756 KB
実行使用メモリ 114,528 KB
最終ジャッジ日時 2023-08-24 04:23:24
合計ジャッジ時間 3,955 ms
ジャッジサーバーID
(参考情報)
judge15 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 71 ms
71,448 KB
testcase_01 AC 69 ms
71,228 KB
testcase_02 AC 71 ms
71,192 KB
testcase_03 AC 75 ms
71,384 KB
testcase_04 AC 71 ms
71,308 KB
testcase_05 AC 71 ms
71,124 KB
testcase_06 AC 72 ms
71,184 KB
testcase_07 AC 88 ms
75,776 KB
testcase_08 AC 82 ms
79,888 KB
testcase_09 AC 88 ms
82,900 KB
testcase_10 AC 126 ms
114,396 KB
testcase_11 AC 124 ms
114,528 KB
testcase_12 AC 125 ms
114,520 KB
testcase_13 AC 128 ms
114,468 KB
testcase_14 AC 126 ms
114,396 KB
testcase_15 AC 126 ms
114,340 KB
testcase_16 AC 133 ms
114,424 KB
testcase_17 AC 73 ms
71,180 KB
testcase_18 AC 71 ms
71,212 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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