結果

問題 No.1090 ソーシャルディスタンス / Social Distance
ユーザー DrDrpilotDrDrpilot
提出日時 2022-04-13 14:27:12
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 146 ms / 2,000 ms
コード長 195 bytes
コンパイル時間 667 ms
コンパイル使用メモリ 12,288 KB
実行使用メモリ 20,696 KB
最終ジャッジ日時 2024-12-23 12:23:43
合計ジャッジ時間 4,013 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 27 ms
10,496 KB
testcase_01 AC 27 ms
10,496 KB
testcase_02 AC 110 ms
16,832 KB
testcase_03 AC 38 ms
11,392 KB
testcase_04 AC 112 ms
17,200 KB
testcase_05 AC 34 ms
11,136 KB
testcase_06 AC 127 ms
18,780 KB
testcase_07 AC 88 ms
15,336 KB
testcase_08 AC 146 ms
18,932 KB
testcase_09 AC 89 ms
15,196 KB
testcase_10 AC 101 ms
16,760 KB
testcase_11 AC 136 ms
19,328 KB
testcase_12 AC 89 ms
15,308 KB
testcase_13 AC 91 ms
15,412 KB
testcase_14 AC 137 ms
18,324 KB
testcase_15 AC 112 ms
16,936 KB
testcase_16 AC 66 ms
13,648 KB
testcase_17 AC 31 ms
10,880 KB
testcase_18 AC 64 ms
13,896 KB
testcase_19 AC 83 ms
15,272 KB
testcase_20 AC 76 ms
14,864 KB
testcase_21 AC 88 ms
15,448 KB
testcase_22 AC 27 ms
10,496 KB
testcase_23 AC 28 ms
10,368 KB
testcase_24 AC 132 ms
20,696 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,d=map(int,input().split())
a=[0]+list(map(int,input().split()))
from itertools import accumulate
b=list(accumulate(a))
for i in range(1,n):
    if b[i]-b[i-1]<d:
        b[i]=b[i-1]+d
print(*b)
0