結果

問題 No.1090 ソーシャルディスタンス / Social Distance
ユーザー miya145592miya145592
提出日時 2023-05-17 00:40:27
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 193 bytes
コンパイル時間 901 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 99,968 KB
最終ジャッジ日時 2024-05-08 16:41:52
合計ジャッジ時間 3,431 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
51,584 KB
testcase_01 AC 38 ms
51,584 KB
testcase_02 AC 79 ms
90,240 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 50 ms
64,892 KB
testcase_06 WA -
testcase_07 AC 69 ms
85,504 KB
testcase_08 WA -
testcase_09 AC 70 ms
85,776 KB
testcase_10 AC 75 ms
89,592 KB
testcase_11 WA -
testcase_12 AC 70 ms
86,784 KB
testcase_13 WA -
testcase_14 AC 83 ms
96,260 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 AC 50 ms
63,104 KB
testcase_18 WA -
testcase_19 AC 69 ms
84,352 KB
testcase_20 AC 66 ms
83,200 KB
testcase_21 AC 71 ms
87,108 KB
testcase_22 AC 37 ms
51,712 KB
testcase_23 AC 39 ms
51,712 KB
testcase_24 AC 90 ms
99,712 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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