結果

問題 No.871 かえるのうた
ユーザー syunsukesyunsuke
提出日時 2019-08-31 22:19:50
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 142 ms / 2,000 ms
コード長 1,064 bytes
コンパイル時間 107 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 27,544 KB
最終ジャッジ日時 2024-11-30 10:54:00
合計ジャッジ時間 4,090 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 26 ms
10,880 KB
testcase_01 AC 26 ms
10,880 KB
testcase_02 AC 26 ms
11,008 KB
testcase_03 AC 30 ms
10,880 KB
testcase_04 AC 28 ms
10,880 KB
testcase_05 AC 27 ms
10,752 KB
testcase_06 AC 28 ms
11,008 KB
testcase_07 AC 27 ms
10,880 KB
testcase_08 AC 28 ms
11,008 KB
testcase_09 AC 28 ms
11,264 KB
testcase_10 AC 27 ms
10,752 KB
testcase_11 AC 26 ms
10,880 KB
testcase_12 AC 38 ms
13,696 KB
testcase_13 AC 30 ms
11,520 KB
testcase_14 AC 97 ms
27,240 KB
testcase_15 AC 94 ms
27,260 KB
testcase_16 AC 140 ms
27,544 KB
testcase_17 AC 92 ms
26,072 KB
testcase_18 AC 37 ms
13,300 KB
testcase_19 AC 98 ms
27,276 KB
testcase_20 AC 35 ms
12,032 KB
testcase_21 AC 60 ms
16,928 KB
testcase_22 AC 25 ms
10,880 KB
testcase_23 AC 25 ms
10,752 KB
testcase_24 AC 26 ms
10,880 KB
testcase_25 AC 28 ms
11,136 KB
testcase_26 AC 40 ms
12,032 KB
testcase_27 AC 37 ms
12,888 KB
testcase_28 AC 26 ms
10,880 KB
testcase_29 AC 58 ms
17,792 KB
testcase_30 AC 108 ms
22,708 KB
testcase_31 AC 27 ms
11,264 KB
testcase_32 AC 90 ms
20,624 KB
testcase_33 AC 95 ms
26,644 KB
testcase_34 AC 41 ms
14,940 KB
testcase_35 AC 63 ms
19,684 KB
testcase_36 AC 79 ms
22,400 KB
testcase_37 AC 71 ms
17,768 KB
testcase_38 AC 142 ms
26,724 KB
testcase_39 AC 126 ms
25,088 KB
testcase_40 AC 95 ms
17,912 KB
testcase_41 AC 27 ms
10,752 KB
testcase_42 AC 84 ms
17,916 KB
testcase_43 AC 29 ms
10,752 KB
testcase_44 AC 27 ms
10,880 KB
testcase_45 AC 27 ms
10,880 KB
testcase_46 AC 26 ms
10,752 KB
testcase_47 AC 26 ms
10,880 KB
testcase_48 AC 26 ms
10,752 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