結果

問題 No.1090 ソーシャルディスタンス / Social Distance
ユーザー TakoKurageTakoKurage
提出日時 2020-06-24 20:54:48
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 143 ms / 2,000 ms
コード長 211 bytes
コンパイル時間 225 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 20,640 KB
最終ジャッジ日時 2024-07-03 20:20:50
合計ジャッジ時間 3,669 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 25 ms
10,496 KB
testcase_01 AC 25 ms
10,624 KB
testcase_02 AC 103 ms
16,976 KB
testcase_03 AC 36 ms
11,648 KB
testcase_04 AC 114 ms
17,244 KB
testcase_05 AC 32 ms
11,392 KB
testcase_06 AC 123 ms
18,984 KB
testcase_07 AC 86 ms
15,604 KB
testcase_08 AC 143 ms
19,524 KB
testcase_09 AC 86 ms
15,488 KB
testcase_10 AC 109 ms
16,768 KB
testcase_11 AC 139 ms
19,928 KB
testcase_12 AC 89 ms
15,684 KB
testcase_13 AC 90 ms
15,296 KB
testcase_14 AC 138 ms
18,620 KB
testcase_15 AC 106 ms
16,948 KB
testcase_16 AC 64 ms
13,768 KB
testcase_17 AC 30 ms
11,136 KB
testcase_18 AC 64 ms
14,032 KB
testcase_19 AC 80 ms
15,280 KB
testcase_20 AC 74 ms
15,128 KB
testcase_21 AC 91 ms
15,588 KB
testcase_22 AC 26 ms
10,624 KB
testcase_23 AC 25 ms
10,624 KB
testcase_24 AC 133 ms
20,640 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from itertools import accumulate

N, D, *A = map(int, open(0).read().split())

X = [0] + list(accumulate(A))

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

print(*X)
0