結果

問題 No.1090 ソーシャルディスタンス / Social Distance
ユーザー Meso MesoMeso Meso
提出日時 2024-06-24 21:08:02
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 226 ms / 2,000 ms
コード長 220 bytes
コンパイル時間 148 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 20,840 KB
最終ジャッジ日時 2024-06-24 21:08:09
合計ジャッジ時間 4,759 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,752 KB
testcase_01 AC 29 ms
10,880 KB
testcase_02 AC 142 ms
17,296 KB
testcase_03 AC 46 ms
11,520 KB
testcase_04 AC 157 ms
17,480 KB
testcase_05 AC 41 ms
11,392 KB
testcase_06 AC 186 ms
18,880 KB
testcase_07 AC 108 ms
15,600 KB
testcase_08 AC 189 ms
19,256 KB
testcase_09 AC 110 ms
15,580 KB
testcase_10 AC 138 ms
17,120 KB
testcase_11 AC 198 ms
19,580 KB
testcase_12 AC 117 ms
15,800 KB
testcase_13 AC 141 ms
15,628 KB
testcase_14 AC 176 ms
18,604 KB
testcase_15 AC 149 ms
17,280 KB
testcase_16 AC 81 ms
14,136 KB
testcase_17 AC 34 ms
11,136 KB
testcase_18 AC 83 ms
14,036 KB
testcase_19 AC 107 ms
15,400 KB
testcase_20 AC 98 ms
15,408 KB
testcase_21 AC 117 ms
15,940 KB
testcase_22 AC 30 ms
10,624 KB
testcase_23 AC 30 ms
10,752 KB
testcase_24 AC 226 ms
20,840 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

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

ans = [0] * n
   
for i in range(1, n):
    ans[i] = ans[i- 1] + A[i - 1]

for i in range(1, n):
    ans[i] = max(ans[i], ans[i - 1] + d)
print(*ans)
0