結果

問題 No.1090 ソーシャルディスタンス / Social Distance
ユーザー na-shna-sh
提出日時 2020-07-07 18:45:52
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 150 ms / 2,000 ms
コード長 214 bytes
コンパイル時間 95 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 20,712 KB
最終ジャッジ日時 2024-10-01 14:56:09
合計ジャッジ時間 4,219 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,496 KB
testcase_01 AC 29 ms
10,624 KB
testcase_02 AC 125 ms
17,164 KB
testcase_03 AC 37 ms
11,520 KB
testcase_04 AC 116 ms
17,348 KB
testcase_05 AC 33 ms
11,264 KB
testcase_06 AC 136 ms
18,756 KB
testcase_07 AC 87 ms
15,520 KB
testcase_08 AC 150 ms
18,980 KB
testcase_09 AC 92 ms
15,580 KB
testcase_10 AC 107 ms
16,992 KB
testcase_11 AC 148 ms
19,532 KB
testcase_12 AC 92 ms
15,532 KB
testcase_13 AC 92 ms
15,628 KB
testcase_14 AC 139 ms
18,472 KB
testcase_15 AC 121 ms
17,012 KB
testcase_16 AC 71 ms
14,012 KB
testcase_17 AC 30 ms
10,880 KB
testcase_18 AC 67 ms
14,032 KB
testcase_19 AC 86 ms
15,396 KB
testcase_20 AC 80 ms
15,280 KB
testcase_21 AC 93 ms
15,816 KB
testcase_22 AC 26 ms
10,752 KB
testcase_23 AC 24 ms
10,624 KB
testcase_24 AC 142 ms
20,712 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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


x = [0] * N
for i, n in enumerate(a):
    x[i+1] = x[i] + n

for i in range(N-1):
    if x[i+1] - x[i] < D:
        x[i+1] = x[i] + D
print(*x)
0