結果

問題 No.871 かえるのうた
ユーザー 👑 KazunKazun
提出日時 2020-09-05 19:46:45
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 326 bytes
コンパイル時間 274 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 99,840 KB
最終ジャッジ日時 2024-05-06 20:01:54
合計ジャッジ時間 4,720 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
51,712 KB
testcase_01 WA -
testcase_02 AC 35 ms
51,840 KB
testcase_03 AC 39 ms
52,224 KB
testcase_04 AC 34 ms
51,584 KB
testcase_05 AC 35 ms
52,224 KB
testcase_06 WA -
testcase_07 AC 35 ms
51,712 KB
testcase_08 AC 41 ms
59,264 KB
testcase_09 AC 40 ms
59,392 KB
testcase_10 AC 44 ms
57,856 KB
testcase_11 AC 39 ms
58,240 KB
testcase_12 AC 48 ms
68,608 KB
testcase_13 AC 42 ms
60,288 KB
testcase_14 AC 103 ms
97,664 KB
testcase_15 AC 98 ms
97,408 KB
testcase_16 AC 105 ms
98,048 KB
testcase_17 AC 95 ms
97,408 KB
testcase_18 AC 52 ms
69,760 KB
testcase_19 WA -
testcase_20 AC 50 ms
64,896 KB
testcase_21 AC 77 ms
88,064 KB
testcase_22 AC 35 ms
51,840 KB
testcase_23 AC 34 ms
51,968 KB
testcase_24 AC 34 ms
51,968 KB
testcase_25 AC 42 ms
60,544 KB
testcase_26 AC 47 ms
64,384 KB
testcase_27 AC 47 ms
65,408 KB
testcase_28 AC 35 ms
51,712 KB
testcase_29 AC 68 ms
90,496 KB
testcase_30 AC 89 ms
99,840 KB
testcase_31 AC 39 ms
59,008 KB
testcase_32 AC 84 ms
99,456 KB
testcase_33 WA -
testcase_34 AC 51 ms
71,936 KB
testcase_35 AC 74 ms
92,416 KB
testcase_36 AC 86 ms
99,072 KB
testcase_37 AC 71 ms
87,680 KB
testcase_38 AC 102 ms
96,640 KB
testcase_39 WA -
testcase_40 AC 76 ms
91,520 KB
testcase_41 AC 35 ms
51,584 KB
testcase_42 AC 68 ms
90,240 KB
testcase_43 WA -
testcase_44 WA -
testcase_45 WA -
testcase_46 AC 34 ms
52,096 KB
testcase_47 AC 35 ms
52,224 KB
testcase_48 AC 37 ms
51,712 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,K=map(int,input().split())
inf=float("inf")

X=list(map(int,input().split()))
X=[-inf]+X+[inf]

A=list(map(int,input().split()))
A=[0]+A+[0]


p=K
Left=X[K]-A[K]

while Left<=X[p-1]:
    Left=min(Left,X[p-1]-A[p-1])
    p-=1

q=K
Right=X[K]+A[K]
while X[q+1]<=Right:
    Right=max(Right,X[q+1]+A[q+1])
    q+=1

print(q-p+1)
0