結果

問題 No.9008 空白区切りで与えられる数値データの合計値を求める(テスト用)
ユーザー scillicett
提出日時 2019-08-22 00:34:42
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 195 ms / 2,000 ms
コード長 88 bytes
コンパイル時間 294 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 17,216 KB
最終ジャッジ日時 2024-10-10 11:10:27
合計ジャッジ時間 3,195 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 4
other AC * 15
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
a = map(int, input().split())
b=0

for i in a:
    b += i
    
print(b)
0