結果

問題 No.9008 空白区切りで与えられる数値データの合計値を求める(テスト用)
ユーザー Yuuta YahataYuuta Yahata
提出日時 2024-03-20 17:56:02
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 135 ms / 2,000 ms
コード長 50 bytes
コンパイル時間 238 ms
コンパイル使用メモリ 82,004 KB
実行使用メモリ 133,116 KB
最終ジャッジ日時 2024-09-30 06:08:52
合計ジャッジ時間 2,790 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,836 KB
testcase_01 AC 40 ms
52,368 KB
testcase_02 AC 36 ms
52,196 KB
testcase_03 AC 37 ms
52,484 KB
testcase_04 AC 37 ms
53,456 KB
testcase_05 AC 36 ms
52,068 KB
testcase_06 AC 39 ms
52,940 KB
testcase_07 AC 42 ms
61,872 KB
testcase_08 AC 52 ms
71,504 KB
testcase_09 AC 63 ms
78,876 KB
testcase_10 AC 123 ms
119,780 KB
testcase_11 AC 119 ms
119,852 KB
testcase_12 AC 121 ms
119,728 KB
testcase_13 AC 127 ms
123,772 KB
testcase_14 AC 128 ms
125,388 KB
testcase_15 AC 127 ms
125,572 KB
testcase_16 AC 135 ms
133,116 KB
testcase_17 AC 35 ms
52,928 KB
testcase_18 AC 38 ms
53,460 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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