結果

問題 No.1090 ソーシャルディスタンス / Social Distance
ユーザー lloyzlloyz
提出日時 2022-05-14 13:05:04
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 177 ms / 2,000 ms
コード長 240 bytes
コンパイル時間 273 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 20,728 KB
最終ジャッジ日時 2024-07-22 21:56:25
合計ジャッジ時間 4,958 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,752 KB
testcase_01 AC 29 ms
10,624 KB
testcase_02 AC 128 ms
17,424 KB
testcase_03 AC 42 ms
11,648 KB
testcase_04 AC 137 ms
17,452 KB
testcase_05 AC 39 ms
11,392 KB
testcase_06 AC 154 ms
18,880 KB
testcase_07 AC 101 ms
15,516 KB
testcase_08 AC 177 ms
19,140 KB
testcase_09 AC 106 ms
15,480 KB
testcase_10 AC 124 ms
17,120 KB
testcase_11 AC 172 ms
19,580 KB
testcase_12 AC 108 ms
15,676 KB
testcase_13 AC 108 ms
15,484 KB
testcase_14 AC 170 ms
18,608 KB
testcase_15 AC 137 ms
17,012 KB
testcase_16 AC 75 ms
14,180 KB
testcase_17 AC 34 ms
11,008 KB
testcase_18 AC 75 ms
13,908 KB
testcase_19 AC 98 ms
15,400 KB
testcase_20 AC 92 ms
15,408 KB
testcase_21 AC 111 ms
15,808 KB
testcase_22 AC 30 ms
10,624 KB
testcase_23 AC 30 ms
10,624 KB
testcase_24 AC 168 ms
20,728 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, d = map(int, input().split())
A = list(map(int, input().split()))

ANS = [0]
for i in range(n - 1):
    ANS.append(ANS[-1] + A[i])
for i in range(1, n):
    dis = ANS[i] - ANS[i - 1]
    if dis < d:
        ANS[i] += d - dis
print(*ANS)
0