結果

問題 No.9008 空白区切りで与えられる数値データの合計値を求める(テスト用)
ユーザー ohanaohana
提出日時 2023-09-25 16:51:40
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 164 ms / 2,000 ms
コード長 60 bytes
コンパイル時間 554 ms
コンパイル使用メモリ 87,268 KB
実行使用メモリ 136,768 KB
最終ジャッジ日時 2023-09-25 16:51:44
合計ジャッジ時間 3,451 ms
ジャッジサーバーID
(参考情報)
judge11 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 73 ms
71,116 KB
testcase_01 AC 72 ms
71,144 KB
testcase_02 AC 71 ms
71,288 KB
testcase_03 AC 72 ms
71,432 KB
testcase_04 AC 73 ms
71,472 KB
testcase_05 AC 72 ms
71,256 KB
testcase_06 AC 73 ms
71,320 KB
testcase_07 AC 85 ms
76,360 KB
testcase_08 AC 88 ms
82,792 KB
testcase_09 AC 94 ms
89,432 KB
testcase_10 AC 144 ms
121,472 KB
testcase_11 AC 142 ms
121,448 KB
testcase_12 AC 145 ms
121,824 KB
testcase_13 AC 150 ms
128,588 KB
testcase_14 AC 150 ms
128,632 KB
testcase_15 AC 151 ms
129,088 KB
testcase_16 AC 164 ms
136,768 KB
testcase_17 AC 73 ms
71,104 KB
testcase_18 AC 73 ms
71,164 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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