結果

問題 No.871 かえるのうた
ユーザー H20H20
提出日時 2021-01-07 12:51:42
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 118 ms / 2,000 ms
コード長 533 bytes
コンパイル時間 465 ms
コンパイル使用メモリ 82,380 KB
実行使用メモリ 99,584 KB
最終ジャッジ日時 2024-11-30 11:04:31
合計ジャッジ時間 5,210 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
52,480 KB
testcase_01 AC 43 ms
52,480 KB
testcase_02 AC 41 ms
51,840 KB
testcase_03 AC 40 ms
51,840 KB
testcase_04 AC 42 ms
51,840 KB
testcase_05 AC 41 ms
52,096 KB
testcase_06 AC 39 ms
52,224 KB
testcase_07 AC 40 ms
52,480 KB
testcase_08 AC 44 ms
59,520 KB
testcase_09 AC 45 ms
59,520 KB
testcase_10 AC 44 ms
58,240 KB
testcase_11 AC 43 ms
58,752 KB
testcase_12 AC 53 ms
68,480 KB
testcase_13 AC 45 ms
60,032 KB
testcase_14 AC 106 ms
97,760 KB
testcase_15 AC 105 ms
97,920 KB
testcase_16 AC 118 ms
98,792 KB
testcase_17 AC 101 ms
97,080 KB
testcase_18 AC 51 ms
69,632 KB
testcase_19 AC 111 ms
98,080 KB
testcase_20 AC 55 ms
67,456 KB
testcase_21 AC 86 ms
87,808 KB
testcase_22 AC 41 ms
51,840 KB
testcase_23 AC 39 ms
52,480 KB
testcase_24 AC 40 ms
51,840 KB
testcase_25 AC 48 ms
61,184 KB
testcase_26 AC 50 ms
64,768 KB
testcase_27 AC 48 ms
65,536 KB
testcase_28 AC 40 ms
51,584 KB
testcase_29 AC 71 ms
90,496 KB
testcase_30 AC 97 ms
99,584 KB
testcase_31 AC 43 ms
59,008 KB
testcase_32 AC 93 ms
99,456 KB
testcase_33 AC 101 ms
98,048 KB
testcase_34 AC 54 ms
72,064 KB
testcase_35 AC 74 ms
92,800 KB
testcase_36 AC 91 ms
99,412 KB
testcase_37 AC 82 ms
89,856 KB
testcase_38 AC 117 ms
97,152 KB
testcase_39 AC 106 ms
97,152 KB
testcase_40 AC 79 ms
93,056 KB
testcase_41 AC 40 ms
52,064 KB
testcase_42 AC 73 ms
91,264 KB
testcase_43 AC 40 ms
51,840 KB
testcase_44 AC 41 ms
51,840 KB
testcase_45 AC 46 ms
60,252 KB
testcase_46 AC 39 ms
51,840 KB
testcase_47 AC 39 ms
51,840 KB
testcase_48 AC 40 ms
51,840 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,M = map(int,input().split())
X = [-float('inf')] + list(map(int,input().split())) + [float('inf')]
A = [0] + list(map(int,input().split())) + [0]
lmin=X[M]-A[M]
rmax=X[M]+A[M]
lindex=M
rindex=M
while lmin<=X[lindex-1] or X[rindex+1]<=rmax:
    if lmin<=X[lindex-1]:
        lindex-=1
        lmin = min(lmin,X[lindex]-A[lindex])
        rmax = max(rmax,X[lindex]+A[lindex])
    if X[rindex+1]<=rmax:
        rindex+=1
        lmin = min(lmin,X[rindex]-A[rindex])
        rmax = max(rmax,X[rindex]+A[rindex])

print(rindex-lindex+1)
0