結果

問題 No.1090 ソーシャルディスタンス / Social Distance
ユーザー syunsukesyunsuke
提出日時 2020-11-02 21:45:13
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 298 bytes
コンパイル時間 193 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 106,624 KB
最終ジャッジ日時 2024-07-22 08:05:38
合計ジャッジ時間 4,388 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 48 ms
51,840 KB
testcase_01 AC 50 ms
52,224 KB
testcase_02 AC 116 ms
94,324 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 62 ms
66,560 KB
testcase_06 WA -
testcase_07 AC 79 ms
87,424 KB
testcase_08 WA -
testcase_09 AC 78 ms
88,704 KB
testcase_10 AC 87 ms
93,056 KB
testcase_11 WA -
testcase_12 AC 87 ms
89,680 KB
testcase_13 WA -
testcase_14 AC 100 ms
102,400 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 AC 57 ms
64,512 KB
testcase_18 WA -
testcase_19 AC 83 ms
86,656 KB
testcase_20 AC 76 ms
85,248 KB
testcase_21 AC 86 ms
90,220 KB
testcase_22 AC 40 ms
51,584 KB
testcase_23 AC 40 ms
51,968 KB
testcase_24 AC 106 ms
106,624 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,D=map(int,input().split())
L=[0]+list(map(int,input().split()))
P=[0]
for i in range(1,N):
    P.append(P[-1]+L[i])
#print(P)
ans=[0]
for i in range(1,N):
    A=(ans[-1]+max(D,L[i]))
    #print(A)
    if P[i]>=A:
        ans.append(P[i])
    else:
        ans.append(min(A,ans[-1]+D))
print(*ans)
0