結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
10,624 KB
testcase_01 AC 34 ms
10,624 KB
testcase_02 AC 147 ms
16,720 KB
testcase_03 AC 48 ms
11,520 KB
testcase_04 AC 156 ms
17,208 KB
testcase_05 AC 42 ms
11,264 KB
testcase_06 AC 188 ms
18,684 KB
testcase_07 AC 113 ms
15,020 KB
testcase_08 AC 193 ms
18,968 KB
testcase_09 AC 117 ms
15,088 KB
testcase_10 AC 136 ms
16,312 KB
testcase_11 AC 198 ms
19,512 KB
testcase_12 AC 121 ms
15,704 KB
testcase_13 AC 119 ms
15,488 KB
testcase_14 AC 183 ms
18,460 KB
testcase_15 AC 148 ms
16,728 KB
testcase_16 AC 86 ms
13,396 KB
testcase_17 AC 36 ms
11,008 KB
testcase_18 AC 85 ms
13,792 KB
testcase_19 AC 106 ms
14,912 KB
testcase_20 AC 99 ms
14,768 KB
testcase_21 AC 118 ms
15,712 KB
testcase_22 AC 32 ms
10,624 KB
testcase_23 AC 32 ms
10,624 KB
testcase_24 AC 197 ms
19,972 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