結果

問題 No.871 かえるのうた
ユーザー syunsukesyunsuke
提出日時 2019-08-31 22:19:50
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 141 ms / 2,000 ms
コード長 1,064 bytes
コンパイル時間 92 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 27,672 KB
最終ジャッジ日時 2024-05-07 16:30:36
合計ジャッジ時間 4,195 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
10,880 KB
testcase_01 AC 28 ms
10,880 KB
testcase_02 AC 25 ms
10,880 KB
testcase_03 AC 25 ms
10,752 KB
testcase_04 AC 26 ms
10,880 KB
testcase_05 AC 26 ms
10,752 KB
testcase_06 AC 27 ms
10,880 KB
testcase_07 AC 26 ms
10,880 KB
testcase_08 AC 27 ms
11,008 KB
testcase_09 AC 29 ms
11,392 KB
testcase_10 AC 28 ms
10,752 KB
testcase_11 AC 26 ms
11,008 KB
testcase_12 AC 38 ms
13,696 KB
testcase_13 AC 30 ms
11,520 KB
testcase_14 AC 99 ms
27,044 KB
testcase_15 AC 97 ms
26,972 KB
testcase_16 AC 141 ms
27,672 KB
testcase_17 AC 89 ms
26,068 KB
testcase_18 AC 40 ms
13,172 KB
testcase_19 AC 102 ms
27,296 KB
testcase_20 AC 36 ms
12,032 KB
testcase_21 AC 58 ms
16,796 KB
testcase_22 AC 27 ms
10,752 KB
testcase_23 AC 27 ms
10,880 KB
testcase_24 AC 26 ms
10,880 KB
testcase_25 AC 28 ms
11,008 KB
testcase_26 AC 35 ms
12,160 KB
testcase_27 AC 35 ms
12,760 KB
testcase_28 AC 26 ms
10,880 KB
testcase_29 AC 58 ms
17,928 KB
testcase_30 AC 106 ms
22,584 KB
testcase_31 AC 29 ms
11,136 KB
testcase_32 AC 92 ms
20,624 KB
testcase_33 AC 91 ms
26,772 KB
testcase_34 AC 41 ms
14,944 KB
testcase_35 AC 64 ms
19,560 KB
testcase_36 AC 79 ms
22,396 KB
testcase_37 AC 75 ms
17,644 KB
testcase_38 AC 137 ms
26,848 KB
testcase_39 AC 123 ms
24,956 KB
testcase_40 AC 95 ms
18,040 KB
testcase_41 AC 27 ms
10,752 KB
testcase_42 AC 87 ms
17,784 KB
testcase_43 AC 28 ms
10,752 KB
testcase_44 AC 26 ms
10,624 KB
testcase_45 AC 29 ms
10,880 KB
testcase_46 AC 27 ms
10,880 KB
testcase_47 AC 28 ms
10,880 KB
testcase_48 AC 27 ms
10,880 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,K=map(int,input().split())
P=list(map(int,input().split()))
INF=float('inf')
P=[-INF]+P+[INF]
A=list(map(int,input().split()))
A=[0]+A+[0]


L=P[K]-A[K]
R=P[K]+A[K]
LF=1
RF=1
l=0
r=0
def Left(a):
    global R
    global L
    global LF
    global RF
    global l
    global r
    for i in range(a,10**5+5):
        if L<=P[K-i]:
            if L>P[K-i]-A[K-i]:
                L=P[K-i]-A[K-i]
            if R<P[K-i]+A[K-i]:
                R=P[K-i]+A[K-i]
                RF=1
        else:
            l=i
            LF=0
            break
#print(i)
def Right(a):
    global R
    global L
    global RF
    global LF
    global l
    global r
    for j in range(a,10**5+5):
        if R>=P[K+j]:
            if R<P[K+j]+A[K+j]:
                R=P[K+j]+A[K+j]
            if L>P[K+j]-A[K+j]:
                L=P[K+j]-A[K+j]
                LF=1
        else:
            RF=0
            r=j
            break

for k in range(10**5+5):
    if RF==1:
        Right(r)
    elif LF==1:
        Left(l)
    else:
        break
    

#print(j)
print(max(l+r-1,1))
0