結果

問題 No.1090 ソーシャルディスタンス / Social Distance
ユーザー rlangevinrlangevin
提出日時 2024-09-05 08:55:37
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 92 ms / 2,000 ms
コード長 187 bytes
コンパイル時間 478 ms
コンパイル使用メモリ 82,356 KB
実行使用メモリ 99,492 KB
最終ジャッジ日時 2024-09-05 08:55:42
合計ジャッジ時間 4,816 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
53,228 KB
testcase_01 AC 41 ms
53,532 KB
testcase_02 AC 79 ms
90,312 KB
testcase_03 AC 52 ms
68,820 KB
testcase_04 AC 83 ms
93,328 KB
testcase_05 AC 50 ms
66,080 KB
testcase_06 AC 86 ms
96,416 KB
testcase_07 AC 70 ms
85,176 KB
testcase_08 AC 89 ms
98,764 KB
testcase_09 AC 72 ms
85,952 KB
testcase_10 AC 74 ms
88,992 KB
testcase_11 AC 92 ms
99,344 KB
testcase_12 AC 71 ms
86,828 KB
testcase_13 AC 71 ms
86,620 KB
testcase_14 AC 84 ms
96,072 KB
testcase_15 AC 76 ms
91,172 KB
testcase_16 AC 59 ms
78,524 KB
testcase_17 AC 49 ms
64,268 KB
testcase_18 AC 61 ms
79,728 KB
testcase_19 AC 67 ms
84,648 KB
testcase_20 AC 67 ms
83,096 KB
testcase_21 AC 71 ms
87,228 KB
testcase_22 AC 36 ms
52,412 KB
testcase_23 AC 36 ms
52,736 KB
testcase_24 AC 89 ms
99,492 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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