結果

問題 No.9008 空白区切りで与えられる数値データの合計値を求める(テスト用)
ユーザー 163x bee.163x bee.
提出日時 2021-07-15 17:17:04
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 180 ms / 2,000 ms
コード長 96 bytes
コンパイル時間 341 ms
コンパイル使用メモリ 87,108 KB
実行使用メモリ 128,336 KB
最終ジャッジ日時 2023-09-18 00:58:53
合計ジャッジ時間 3,309 ms
ジャッジサーバーID
(参考情報)
judge11 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 72 ms
71,536 KB
testcase_01 AC 74 ms
71,236 KB
testcase_02 AC 71 ms
71,412 KB
testcase_03 AC 71 ms
71,416 KB
testcase_04 AC 69 ms
71,384 KB
testcase_05 AC 70 ms
71,284 KB
testcase_06 AC 70 ms
71,484 KB
testcase_07 AC 75 ms
76,420 KB
testcase_08 AC 84 ms
81,004 KB
testcase_09 AC 88 ms
84,148 KB
testcase_10 AC 139 ms
114,756 KB
testcase_11 AC 145 ms
114,312 KB
testcase_12 AC 144 ms
114,536 KB
testcase_13 AC 157 ms
114,856 KB
testcase_14 AC 160 ms
114,648 KB
testcase_15 AC 159 ms
114,616 KB
testcase_16 AC 180 ms
128,336 KB
testcase_17 AC 71 ms
71,472 KB
testcase_18 AC 70 ms
71,360 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

you = int(input())
A = input().split()
for i in range(len(A)):
    A[i] =int(A[i])
print(sum(A))
0