結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,468 KB
testcase_01 AC 39 ms
52,236 KB
testcase_02 AC 81 ms
90,408 KB
testcase_03 AC 54 ms
67,444 KB
testcase_04 AC 83 ms
93,448 KB
testcase_05 AC 54 ms
65,152 KB
testcase_06 AC 89 ms
96,364 KB
testcase_07 AC 70 ms
85,216 KB
testcase_08 AC 92 ms
98,924 KB
testcase_09 AC 72 ms
85,936 KB
testcase_10 AC 81 ms
89,208 KB
testcase_11 AC 92 ms
99,376 KB
testcase_12 AC 75 ms
86,444 KB
testcase_13 AC 76 ms
86,636 KB
testcase_14 AC 88 ms
96,412 KB
testcase_15 AC 81 ms
91,432 KB
testcase_16 AC 64 ms
77,696 KB
testcase_17 AC 54 ms
63,528 KB
testcase_18 AC 63 ms
78,872 KB
testcase_19 AC 73 ms
84,380 KB
testcase_20 AC 73 ms
83,328 KB
testcase_21 AC 76 ms
87,180 KB
testcase_22 AC 40 ms
52,132 KB
testcase_23 AC 39 ms
52,024 KB
testcase_24 AC 91 ms
99,512 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