結果

問題 No.1090 ソーシャルディスタンス / Social Distance
ユーザー Cer0un0Cer0un0
提出日時 2020-07-04 23:00:12
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 96 ms / 2,000 ms
コード長 231 bytes
コンパイル時間 154 ms
コンパイル使用メモリ 81,824 KB
実行使用メモリ 99,556 KB
最終ジャッジ日時 2024-09-19 14:56:37
合計ジャッジ時間 3,333 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
51,712 KB
testcase_01 AC 37 ms
51,840 KB
testcase_02 AC 83 ms
90,240 KB
testcase_03 AC 56 ms
66,756 KB
testcase_04 AC 86 ms
93,312 KB
testcase_05 AC 53 ms
64,896 KB
testcase_06 AC 90 ms
96,700 KB
testcase_07 AC 74 ms
85,064 KB
testcase_08 AC 93 ms
98,712 KB
testcase_09 AC 75 ms
85,464 KB
testcase_10 AC 80 ms
88,976 KB
testcase_11 AC 94 ms
99,328 KB
testcase_12 AC 75 ms
87,040 KB
testcase_13 AC 77 ms
86,528 KB
testcase_14 AC 88 ms
96,128 KB
testcase_15 AC 82 ms
90,996 KB
testcase_16 AC 65 ms
77,680 KB
testcase_17 AC 51 ms
63,232 KB
testcase_18 AC 65 ms
79,476 KB
testcase_19 AC 74 ms
84,352 KB
testcase_20 AC 71 ms
83,012 KB
testcase_21 AC 77 ms
87,168 KB
testcase_22 AC 38 ms
51,712 KB
testcase_23 AC 38 ms
51,944 KB
testcase_24 AC 96 ms
99,556 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/env python3

N, D = map(int, input().split())
A = list(map(int, input().split()))

Ret = [0]
x = 0
for a in A:
    x += a
    if x-Ret[-1] < D:
        Ret.append(Ret[-1]+D)
    else:
        Ret.append(x)

print(*Ret)

0