結果

問題 No.1090 ソーシャルディスタンス / Social Distance
ユーザー na-shna-sh
提出日時 2020-07-07 17:15:02
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 216 bytes
コンパイル時間 315 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 20,840 KB
最終ジャッジ日時 2024-10-01 13:03:33
合計ジャッジ時間 4,661 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 24 ms
10,624 KB
testcase_01 AC 24 ms
10,624 KB
testcase_02 AC 98 ms
17,164 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 31 ms
11,392 KB
testcase_06 WA -
testcase_07 AC 77 ms
15,516 KB
testcase_08 WA -
testcase_09 AC 79 ms
15,444 KB
testcase_10 AC 94 ms
16,844 KB
testcase_11 WA -
testcase_12 AC 81 ms
15,644 KB
testcase_13 WA -
testcase_14 AC 122 ms
18,608 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 AC 27 ms
11,008 KB
testcase_18 WA -
testcase_19 AC 74 ms
15,340 KB
testcase_20 AC 68 ms
15,272 KB
testcase_21 AC 82 ms
15,668 KB
testcase_22 AC 25 ms
10,624 KB
testcase_23 AC 24 ms
10,624 KB
testcase_24 AC 134 ms
20,840 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

ans = [0] * N
for i, n in enumerate(a):
    if n - ans[i] < D:
        ans[i+1] = ans[i] + D
    else:
        ans[i+1] = ans[i] + n

print(*ans)
0