結果

問題 No.9008 空白区切りで与えられる数値データの合計値を求める(テスト用)
ユーザー Minami53Minami53
提出日時 2018-08-26 09:58:00
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 144 bytes
コンパイル時間 110 ms
コンパイル使用メモリ 10,608 KB
実行使用メモリ 20,700 KB
最終ジャッジ日時 2023-09-10 22:22:31
合計ジャッジ時間 5,917 ms
ジャッジサーバーID
(参考情報)
judge13 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 15 ms
20,700 KB
testcase_01 AC 15 ms
7,792 KB
testcase_02 AC 15 ms
7,788 KB
testcase_03 AC 15 ms
7,960 KB
testcase_04 AC 15 ms
7,696 KB
testcase_05 AC 15 ms
7,776 KB
testcase_06 AC 16 ms
7,824 KB
testcase_07 AC 31 ms
8,728 KB
testcase_08 AC 266 ms
11,788 KB
testcase_09 AC 1,049 ms
15,288 KB
testcase_10 TLE -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

N = input()
A = input()
sum = 0

split_A = A.split()

while len(split_A) >> 0 :
    num = int(split_A.pop(0))
    sum = sum + num

print (sum)
0