結果

問題 No.1090 ソーシャルディスタンス / Social Distance
ユーザー miya145592miya145592
提出日時 2023-05-17 00:44:07
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 92 ms / 2,000 ms
コード長 200 bytes
コンパイル時間 192 ms
コンパイル使用メモリ 82,480 KB
実行使用メモリ 99,568 KB
最終ジャッジ日時 2024-05-08 16:43:55
合計ジャッジ時間 3,699 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,520 KB
testcase_01 AC 37 ms
51,884 KB
testcase_02 AC 75 ms
90,680 KB
testcase_03 AC 51 ms
67,440 KB
testcase_04 AC 82 ms
93,364 KB
testcase_05 AC 50 ms
66,480 KB
testcase_06 AC 85 ms
96,908 KB
testcase_07 AC 67 ms
85,648 KB
testcase_08 AC 88 ms
99,148 KB
testcase_09 AC 70 ms
85,656 KB
testcase_10 AC 75 ms
89,380 KB
testcase_11 AC 92 ms
99,380 KB
testcase_12 AC 73 ms
86,760 KB
testcase_13 AC 71 ms
87,196 KB
testcase_14 AC 87 ms
96,632 KB
testcase_15 AC 77 ms
91,516 KB
testcase_16 AC 61 ms
78,380 KB
testcase_17 AC 49 ms
63,476 KB
testcase_18 AC 63 ms
79,184 KB
testcase_19 AC 69 ms
84,548 KB
testcase_20 AC 67 ms
83,536 KB
testcase_21 AC 70 ms
87,132 KB
testcase_22 AC 37 ms
52,748 KB
testcase_23 AC 38 ms
53,844 KB
testcase_24 AC 90 ms
99,568 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, D = map(int, input().split())
A = list(map(int, input().split()))
ans = [0]
x = 0
for a in A:
    x+=a
    if x-ans[-1]<D:
        ans.append(ans[-1]+D)
    else:
        ans.append(x)
print(*ans)
0