結果

問題 No.1090 ソーシャルディスタンス / Social Distance
ユーザー Konton7Konton7
提出日時 2020-06-26 21:41:10
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 181 ms / 2,000 ms
コード長 236 bytes
コンパイル時間 103 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 20,856 KB
最終ジャッジ日時 2024-07-04 20:15:36
合計ジャッジ時間 4,565 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,752 KB
testcase_01 AC 29 ms
10,752 KB
testcase_02 AC 132 ms
17,180 KB
testcase_03 AC 42 ms
11,776 KB
testcase_04 AC 141 ms
17,472 KB
testcase_05 AC 39 ms
11,392 KB
testcase_06 AC 162 ms
18,896 KB
testcase_07 AC 104 ms
15,608 KB
testcase_08 AC 181 ms
19,196 KB
testcase_09 AC 107 ms
15,720 KB
testcase_10 AC 130 ms
16,988 KB
testcase_11 AC 176 ms
19,596 KB
testcase_12 AC 113 ms
15,668 KB
testcase_13 AC 112 ms
15,640 KB
testcase_14 AC 171 ms
18,600 KB
testcase_15 AC 140 ms
17,168 KB
testcase_16 AC 78 ms
13,916 KB
testcase_17 AC 33 ms
11,008 KB
testcase_18 AC 77 ms
14,056 KB
testcase_19 AC 101 ms
15,544 KB
testcase_20 AC 94 ms
15,264 KB
testcase_21 AC 112 ms
15,676 KB
testcase_22 AC 30 ms
10,752 KB
testcase_23 AC 29 ms
10,880 KB
testcase_24 AC 172 ms
20,856 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, d = [int(v) for v in input().split()]
a = [0]
b = [int(v) for v in input().split()]
for i in range(n - 1):
    a.append(a[-1] + b[i])

for i in range(n - 1):
    k = a[i + 1] - a[i]
    if k < d:
        a[i + 1] = a[i] + d
print(*a)
0