結果

問題 No.1090 ソーシャルディスタンス / Social Distance
ユーザー ttrttr
提出日時 2020-06-28 15:55:03
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 130 ms / 2,000 ms
コード長 210 bytes
コンパイル時間 121 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 20,716 KB
最終ジャッジ日時 2024-07-07 19:06:26
合計ジャッジ時間 4,039 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 25 ms
10,624 KB
testcase_01 AC 25 ms
10,624 KB
testcase_02 AC 97 ms
17,292 KB
testcase_03 AC 33 ms
11,520 KB
testcase_04 AC 102 ms
17,456 KB
testcase_05 AC 31 ms
11,392 KB
testcase_06 AC 120 ms
18,748 KB
testcase_07 AC 75 ms
15,392 KB
testcase_08 AC 130 ms
19,108 KB
testcase_09 AC 79 ms
15,580 KB
testcase_10 AC 97 ms
16,844 KB
testcase_11 AC 128 ms
19,448 KB
testcase_12 AC 81 ms
15,392 KB
testcase_13 AC 82 ms
15,500 KB
testcase_14 AC 122 ms
18,608 KB
testcase_15 AC 101 ms
17,024 KB
testcase_16 AC 59 ms
13,904 KB
testcase_17 AC 27 ms
10,880 KB
testcase_18 AC 57 ms
14,036 KB
testcase_19 AC 75 ms
15,268 KB
testcase_20 AC 69 ms
15,280 KB
testcase_21 AC 84 ms
15,672 KB
testcase_22 AC 24 ms
10,624 KB
testcase_23 AC 23 ms
10,624 KB
testcase_24 AC 126 ms
20,716 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,D = map(int, input().split())
A = [int(a) for a in input().split()]

ans = [0]
x = 0
for a in A:
    x += a
    if x-ans[-1] < D:
        ans.append(ans[-1]+D)
        continue
    ans.append(x)

print(*ans)
0