結果

問題 No.1090 ソーシャルディスタンス / Social Distance
ユーザー tomoyaatcodertomoyaatcoder
提出日時 2020-08-01 16:59:14
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 292 bytes
コンパイル時間 254 ms
コンパイル使用メモリ 82,428 KB
実行使用メモリ 100,352 KB
最終ジャッジ日時 2024-07-08 02:53:00
合計ジャッジ時間 3,505 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
51,712 KB
testcase_01 AC 32 ms
51,328 KB
testcase_02 AC 69 ms
90,752 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 45 ms
64,896 KB
testcase_06 WA -
testcase_07 AC 62 ms
85,376 KB
testcase_08 WA -
testcase_09 AC 63 ms
86,016 KB
testcase_10 AC 65 ms
89,728 KB
testcase_11 WA -
testcase_12 AC 62 ms
86,912 KB
testcase_13 WA -
testcase_14 AC 76 ms
96,564 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 AC 42 ms
63,104 KB
testcase_18 WA -
testcase_19 AC 61 ms
84,720 KB
testcase_20 AC 61 ms
83,384 KB
testcase_21 AC 63 ms
87,524 KB
testcase_22 AC 31 ms
51,712 KB
testcase_23 AC 34 ms
51,328 KB
testcase_24 AC 81 ms
100,352 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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