結果

問題 No.1090 ソーシャルディスタンス / Social Distance
ユーザー vwxyzvwxyz
提出日時 2022-09-07 00:32:40
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 174 ms / 2,000 ms
コード長 271 bytes
コンパイル時間 155 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 19,976 KB
最終ジャッジ日時 2024-05-01 18:47:49
合計ジャッジ時間 3,886 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 26 ms
10,880 KB
testcase_01 AC 26 ms
10,752 KB
testcase_02 AC 128 ms
16,848 KB
testcase_03 AC 41 ms
11,648 KB
testcase_04 AC 147 ms
17,392 KB
testcase_05 AC 39 ms
11,136 KB
testcase_06 AC 174 ms
18,720 KB
testcase_07 AC 92 ms
15,144 KB
testcase_08 AC 161 ms
19,080 KB
testcase_09 AC 96 ms
14,964 KB
testcase_10 AC 118 ms
16,308 KB
testcase_11 AC 170 ms
19,392 KB
testcase_12 AC 105 ms
15,700 KB
testcase_13 AC 100 ms
15,360 KB
testcase_14 AC 163 ms
18,468 KB
testcase_15 AC 131 ms
16,856 KB
testcase_16 AC 71 ms
13,648 KB
testcase_17 AC 29 ms
10,880 KB
testcase_18 AC 72 ms
13,668 KB
testcase_19 AC 92 ms
14,992 KB
testcase_20 AC 87 ms
14,520 KB
testcase_21 AC 104 ms
15,712 KB
testcase_22 AC 26 ms
10,752 KB
testcase_23 AC 25 ms
10,752 KB
testcase_24 AC 170 ms
19,976 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
readline=sys.stdin.readline
write=sys.stdout.write
from math import gcd as GCD
import math

N,D=map(int,readline().split())
A=[0]+list(map(int,readline().split()))
for i in range(1,N):
    A[i]+=A[i-1]
for i in range(1,N):
    A[i]=max(A[i],A[i-1]+D)
print(*A)
0