結果

問題 No.9008 空白区切りで与えられる数値データの合計値を求める(テスト用)
ユーザー didymium860didymium860
提出日時 2024-02-10 10:26:38
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 128 ms / 2,000 ms
コード長 66 bytes
コンパイル時間 253 ms
コンパイル使用メモリ 82,596 KB
実行使用メモリ 133,704 KB
最終ジャッジ日時 2024-09-28 17:04:31
合計ジャッジ時間 3,126 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
52,248 KB
testcase_01 AC 34 ms
51,944 KB
testcase_02 AC 33 ms
52,288 KB
testcase_03 AC 34 ms
52,736 KB
testcase_04 AC 33 ms
52,116 KB
testcase_05 AC 34 ms
53,104 KB
testcase_06 AC 36 ms
53,256 KB
testcase_07 AC 39 ms
61,444 KB
testcase_08 AC 48 ms
73,160 KB
testcase_09 AC 56 ms
79,752 KB
testcase_10 AC 109 ms
119,632 KB
testcase_11 AC 107 ms
120,140 KB
testcase_12 AC 111 ms
120,192 KB
testcase_13 AC 118 ms
124,260 KB
testcase_14 AC 117 ms
125,360 KB
testcase_15 AC 116 ms
125,508 KB
testcase_16 AC 128 ms
133,704 KB
testcase_17 AC 34 ms
52,672 KB
testcase_18 AC 34 ms
52,764 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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