結果

問題 No.871 かえるのうた
ユーザー syunsukesyunsuke
提出日時 2019-08-31 21:55:29
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
WA  
実行時間 -
コード長 454 bytes
コンパイル時間 90 ms
コンパイル使用メモリ 12,288 KB
実行使用メモリ 28,128 KB
最終ジャッジ日時 2024-11-25 09:05:08
合計ジャッジ時間 4,155 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 27 ms
10,624 KB
testcase_01 WA -
testcase_02 AC 29 ms
10,624 KB
testcase_03 AC 30 ms
10,624 KB
testcase_04 AC 26 ms
10,368 KB
testcase_05 AC 26 ms
10,624 KB
testcase_06 WA -
testcase_07 AC 30 ms
10,624 KB
testcase_08 AC 27 ms
10,880 KB
testcase_09 AC 29 ms
11,136 KB
testcase_10 AC 27 ms
10,624 KB
testcase_11 AC 28 ms
10,880 KB
testcase_12 AC 39 ms
13,568 KB
testcase_13 AC 30 ms
11,136 KB
testcase_14 AC 96 ms
28,128 KB
testcase_15 AC 89 ms
27,120 KB
testcase_16 AC 138 ms
27,260 KB
testcase_17 AC 86 ms
25,712 KB
testcase_18 AC 37 ms
12,956 KB
testcase_19 WA -
testcase_20 AC 33 ms
11,864 KB
testcase_21 AC 56 ms
16,584 KB
testcase_22 AC 25 ms
10,496 KB
testcase_23 AC 26 ms
10,624 KB
testcase_24 AC 25 ms
10,624 KB
testcase_25 AC 27 ms
10,752 KB
testcase_26 AC 35 ms
12,032 KB
testcase_27 AC 34 ms
12,672 KB
testcase_28 AC 26 ms
10,624 KB
testcase_29 AC 56 ms
17,704 KB
testcase_30 AC 105 ms
22,620 KB
testcase_31 AC 28 ms
11,008 KB
testcase_32 AC 95 ms
20,376 KB
testcase_33 WA -
testcase_34 AC 41 ms
14,848 KB
testcase_35 AC 61 ms
19,332 KB
testcase_36 AC 80 ms
21,952 KB
testcase_37 AC 71 ms
17,676 KB
testcase_38 AC 126 ms
26,500 KB
testcase_39 WA -
testcase_40 AC 100 ms
17,828 KB
testcase_41 AC 27 ms
10,624 KB
testcase_42 AC 85 ms
17,700 KB
testcase_43 WA -
testcase_44 WA -
testcase_45 WA -
testcase_46 AC 27 ms
10,624 KB
testcase_47 AC 27 ms
10,624 KB
testcase_48 AC 26 ms
10,496 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]

for i in range(10**5+5):
    if L<=P[K-i]:
        if L>P[K-i]-A[K-i]:
            L=P[K-i]-A[K-i]
    else:
        break
#print(i)

for j in range(10**5+5):
    if R>=P[K+j]:
        if R<P[K+j]+A[K+j]:
            R=P[K+j]+A[K+j]
    else:
        break
#print(j)
print(max(i+j-1,1))
0