結果

問題 No.9008 空白区切りで与えられる数値データの合計値を求める(テスト用)
ユーザー yumenomatayumeyumenomatayume
提出日時 2020-03-20 23:53:16
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 115 ms / 2,000 ms
コード長 62 bytes
コンパイル時間 152 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 133,704 KB
最終ジャッジ日時 2024-05-09 09:26:05
合計ジャッジ時間 2,493 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
53,084 KB
testcase_01 AC 33 ms
53,192 KB
testcase_02 AC 32 ms
53,084 KB
testcase_03 AC 31 ms
52,232 KB
testcase_04 AC 31 ms
52,272 KB
testcase_05 AC 30 ms
52,272 KB
testcase_06 AC 30 ms
52,744 KB
testcase_07 AC 34 ms
61,596 KB
testcase_08 AC 45 ms
72,888 KB
testcase_09 AC 51 ms
78,756 KB
testcase_10 AC 105 ms
119,604 KB
testcase_11 AC 103 ms
119,984 KB
testcase_12 AC 103 ms
120,540 KB
testcase_13 AC 109 ms
124,484 KB
testcase_14 AC 108 ms
125,744 KB
testcase_15 AC 107 ms
125,712 KB
testcase_16 AC 115 ms
133,704 KB
testcase_17 AC 32 ms
52,648 KB
testcase_18 AC 30 ms
52,816 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n=int(input())
a=list(map(int,input().split()))

print(sum(a))
0