結果

問題 No.1170 Never Want to Walk
ユーザー nehan_der_thalnehan_der_thal
提出日時 2020-08-14 22:45:19
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 521 bytes
コンパイル時間 242 ms
コンパイル使用メモリ 82,372 KB
実行使用メモリ 123,440 KB
最終ジャッジ日時 2024-04-18 22:36:24
合計ジャッジ時間 5,029 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,336 KB
testcase_01 AC 38 ms
52,196 KB
testcase_02 WA -
testcase_03 AC 36 ms
52,944 KB
testcase_04 AC 38 ms
53,216 KB
testcase_05 AC 38 ms
52,832 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 38 ms
52,188 KB
testcase_10 AC 40 ms
53,192 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
testcase_36 WA -
testcase_37 WA -
testcase_38 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

N, A, B = map(int, input().split())
X = list(map(int, input().split()))
X.append(10**19)
d = [i for i in range(N)]
C = [1]*N
j=k=-1
cc = 1
for i in range(N):
    jj = j
    while X[j+1] < X[i]+A:
        j+=1
    ks = []
    while X[k+1] <= X[i]+B:
        k+=1
        ks.append(k)
    if j < k and d[j+1] != j+1:
        d[i] = d[i-1]
        C[d[i]] += 1
    for kk in ks:
        if j<kk:
            d[kk] = d[i]
            C[d[i]] += 1
#    print(i, j, k)
#print(d)
#print(C)
for i in range(N):
    print(C[d[i]])
0