結果

問題 No.3072 Sum of sqrt(x)
ユーザー maspymaspy
提出日時 2020-06-21 12:17:38
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 176 bytes
コンパイル時間 2,320 ms
コンパイル使用メモリ 82,132 KB
実行使用メモリ 165,544 KB
最終ジャッジ日時 2024-06-30 09:19:11
合計ジャッジ時間 26,817 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 AC 38 ms
51,840 KB
testcase_04 AC 38 ms
51,584 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 286 ms
152,216 KB
testcase_09 AC 251 ms
152,264 KB
testcase_10 OLE -
testcase_11 OLE -
testcase_12 OLE -
testcase_13 OLE -
testcase_14 OLE -
testcase_15 OLE -
testcase_16 OLE -
testcase_17 OLE -
testcase_18 OLE -
testcase_19 OLE -
testcase_20 OLE -
testcase_21 OLE -
testcase_22 OLE -
testcase_23 OLE -
testcase_24 OLE -
testcase_25 OLE -
testcase_26 OLE -
testcase_27 OLE -
testcase_28 WA -
testcase_29 OLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
read = sys.stdin.buffer.read
readline = sys.stdin.buffer.readline

N = int(readline())
nums = map(int, read().split())

s = 0
for x in nums:
    s += x
    print(s)
0