結果

問題 No.1090 ソーシャルディスタンス / Social Distance
ユーザー akitsugu777akitsugu777
提出日時 2020-10-13 15:54:02
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 181 ms / 2,000 ms
コード長 196 bytes
コンパイル時間 165 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 20,716 KB
最終ジャッジ日時 2024-07-20 18:31:08
合計ジャッジ時間 4,155 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
10,496 KB
testcase_01 AC 31 ms
10,368 KB
testcase_02 AC 137 ms
16,928 KB
testcase_03 AC 44 ms
11,520 KB
testcase_04 AC 143 ms
17,328 KB
testcase_05 AC 41 ms
11,264 KB
testcase_06 AC 161 ms
18,752 KB
testcase_07 AC 104 ms
15,372 KB
testcase_08 AC 181 ms
18,936 KB
testcase_09 AC 110 ms
16,460 KB
testcase_10 AC 131 ms
16,852 KB
testcase_11 AC 174 ms
19,448 KB
testcase_12 AC 113 ms
15,524 KB
testcase_13 AC 114 ms
15,628 KB
testcase_14 AC 171 ms
18,460 KB
testcase_15 AC 141 ms
16,904 KB
testcase_16 AC 80 ms
13,772 KB
testcase_17 AC 34 ms
10,880 KB
testcase_18 AC 77 ms
13,912 KB
testcase_19 AC 103 ms
15,272 KB
testcase_20 AC 94 ms
15,120 KB
testcase_21 AC 113 ms
15,520 KB
testcase_22 AC 31 ms
10,368 KB
testcase_23 AC 31 ms
10,496 KB
testcase_24 AC 173 ms
20,716 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

B = [0]
for a in A:
    B += [B[-1] + a]

for i in range(1, N):
    if B[i] - B[i-1] < D:
        B[i] = B[i-1] + D

print(*B)
0