結果

問題 No.1090 ソーシャルディスタンス / Social Distance
ユーザー futago0118futago0118
提出日時 2020-07-09 23:03:05
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 187 ms / 2,000 ms
コード長 238 bytes
コンパイル時間 260 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 20,720 KB
最終ジャッジ日時 2024-10-08 15:47:30
合計ジャッジ時間 4,428 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,624 KB
testcase_01 AC 30 ms
10,624 KB
testcase_02 AC 142 ms
17,152 KB
testcase_03 AC 43 ms
11,520 KB
testcase_04 AC 145 ms
17,336 KB
testcase_05 AC 39 ms
11,136 KB
testcase_06 AC 168 ms
18,884 KB
testcase_07 AC 107 ms
15,520 KB
testcase_08 AC 187 ms
19,268 KB
testcase_09 AC 111 ms
15,344 KB
testcase_10 AC 133 ms
17,028 KB
testcase_11 AC 185 ms
19,584 KB
testcase_12 AC 118 ms
15,676 KB
testcase_13 AC 115 ms
15,488 KB
testcase_14 AC 175 ms
18,576 KB
testcase_15 AC 147 ms
16,876 KB
testcase_16 AC 80 ms
13,776 KB
testcase_17 AC 33 ms
10,880 KB
testcase_18 AC 81 ms
13,908 KB
testcase_19 AC 106 ms
15,404 KB
testcase_20 AC 97 ms
15,160 KB
testcase_21 AC 119 ms
15,652 KB
testcase_22 AC 30 ms
10,624 KB
testcase_23 AC 30 ms
10,752 KB
testcase_24 AC 182 ms
20,720 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,D = map(int,input().split())
A = [int(x) for x in input().split()]

P = [0]*N
for i in range(1,N):
    P[i] = P[i-1] + A[i-1] 
    
#print(P)

for i in range(N-1):
    d = P[i+1] - P[i]
    if d < D:
        P[i+1] = P[i] + D

print(*P)
0