結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
10,624 KB
testcase_01 AC 26 ms
10,624 KB
testcase_02 AC 105 ms
16,968 KB
testcase_03 AC 37 ms
11,520 KB
testcase_04 AC 111 ms
17,332 KB
testcase_05 AC 34 ms
11,264 KB
testcase_06 AC 123 ms
18,908 KB
testcase_07 AC 82 ms
15,344 KB
testcase_08 AC 146 ms
19,184 KB
testcase_09 AC 85 ms
15,456 KB
testcase_10 AC 101 ms
16,876 KB
testcase_11 AC 132 ms
19,588 KB
testcase_12 AC 88 ms
15,564 KB
testcase_13 AC 86 ms
15,408 KB
testcase_14 AC 137 ms
18,460 KB
testcase_15 AC 109 ms
17,068 KB
testcase_16 AC 64 ms
13,776 KB
testcase_17 AC 28 ms
10,880 KB
testcase_18 AC 61 ms
13,900 KB
testcase_19 AC 82 ms
15,404 KB
testcase_20 AC 75 ms
15,248 KB
testcase_21 AC 90 ms
15,448 KB
testcase_22 AC 26 ms
10,624 KB
testcase_23 AC 26 ms
10,624 KB
testcase_24 AC 128 ms
20,716 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