結果

問題 No.1090 ソーシャルディスタンス / Social Distance
ユーザー syunsukesyunsuke
提出日時 2020-11-02 21:47:54
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 89 ms / 2,000 ms
コード長 202 bytes
コンパイル時間 348 ms
コンパイル使用メモリ 82,172 KB
実行使用メモリ 100,352 KB
最終ジャッジ日時 2024-07-22 08:06:32
合計ジャッジ時間 3,545 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,680 KB
testcase_01 AC 36 ms
51,996 KB
testcase_02 AC 73 ms
91,128 KB
testcase_03 AC 50 ms
67,936 KB
testcase_04 AC 78 ms
94,056 KB
testcase_05 AC 46 ms
66,288 KB
testcase_06 AC 84 ms
97,568 KB
testcase_07 AC 67 ms
85,516 KB
testcase_08 AC 85 ms
99,904 KB
testcase_09 AC 68 ms
86,232 KB
testcase_10 AC 73 ms
89,472 KB
testcase_11 AC 89 ms
100,096 KB
testcase_12 AC 69 ms
87,296 KB
testcase_13 AC 70 ms
87,168 KB
testcase_14 AC 81 ms
97,152 KB
testcase_15 AC 75 ms
91,836 KB
testcase_16 AC 61 ms
78,592 KB
testcase_17 AC 50 ms
63,232 KB
testcase_18 AC 59 ms
79,868 KB
testcase_19 AC 68 ms
84,608 KB
testcase_20 AC 69 ms
83,200 KB
testcase_21 AC 75 ms
87,680 KB
testcase_22 AC 36 ms
52,352 KB
testcase_23 AC 36 ms
51,840 KB
testcase_24 AC 86 ms
100,352 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)
for i in range(1,N):
    if P[i]-P[i-1]<D:
        P[i]=P[i-1]+D
print(*P)
0