結果

問題 No.871 かえるのうた
ユーザー MineMine
提出日時 2020-09-06 23:15:08
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 237 ms / 2,000 ms
コード長 559 bytes
コンパイル時間 148 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 29,004 KB
最終ジャッジ日時 2024-05-07 16:41:33
合計ジャッジ時間 4,914 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
10,752 KB
testcase_01 AC 27 ms
10,880 KB
testcase_02 AC 30 ms
10,752 KB
testcase_03 AC 31 ms
10,752 KB
testcase_04 AC 29 ms
10,752 KB
testcase_05 AC 31 ms
10,752 KB
testcase_06 AC 28 ms
10,752 KB
testcase_07 AC 28 ms
10,752 KB
testcase_08 AC 29 ms
11,136 KB
testcase_09 AC 30 ms
11,392 KB
testcase_10 AC 29 ms
11,008 KB
testcase_11 AC 29 ms
11,136 KB
testcase_12 AC 40 ms
13,656 KB
testcase_13 AC 31 ms
11,392 KB
testcase_14 AC 97 ms
27,996 KB
testcase_15 AC 96 ms
28,080 KB
testcase_16 AC 237 ms
29,004 KB
testcase_17 AC 95 ms
26,444 KB
testcase_18 AC 38 ms
13,348 KB
testcase_19 AC 102 ms
28,448 KB
testcase_20 AC 45 ms
12,080 KB
testcase_21 AC 78 ms
16,280 KB
testcase_22 AC 28 ms
10,880 KB
testcase_23 AC 27 ms
10,752 KB
testcase_24 AC 28 ms
10,880 KB
testcase_25 AC 31 ms
11,136 KB
testcase_26 AC 46 ms
12,032 KB
testcase_27 AC 37 ms
12,928 KB
testcase_28 AC 28 ms
10,752 KB
testcase_29 AC 58 ms
17,852 KB
testcase_30 AC 187 ms
23,020 KB
testcase_31 AC 29 ms
11,136 KB
testcase_32 AC 145 ms
20,168 KB
testcase_33 AC 91 ms
26,816 KB
testcase_34 AC 43 ms
15,116 KB
testcase_35 AC 64 ms
20,216 KB
testcase_36 AC 77 ms
22,356 KB
testcase_37 AC 107 ms
17,448 KB
testcase_38 AC 217 ms
27,092 KB
testcase_39 AC 192 ms
25,856 KB
testcase_40 AC 147 ms
17,960 KB
testcase_41 AC 29 ms
10,880 KB
testcase_42 AC 162 ms
17,960 KB
testcase_43 AC 27 ms
10,752 KB
testcase_44 AC 27 ms
10,880 KB
testcase_45 AC 32 ms
11,008 KB
testcase_46 AC 27 ms
10,752 KB
testcase_47 AC 28 ms
10,752 KB
testcase_48 AC 28 ms
10,880 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import bisect
n, k = map(int, input().split())
x = list(map(int, input().split()))
a = list(map(int, input().split()))

idxl = k-1
idxr = k-1
l = x[k-1]
r = x[k-1]
allfrog = 0

while True:
    if idxl >= 0 and l  <= x[idxl]:
        l = min(l, x[idxl] - a[idxl])
        r = max(r, x[idxl] + a[idxl])
        idxl -= 1
    if idxr < n and r  >= x[idxr]:
        l = min(l, x[idxr] - a[idxr])
        r = max(r, x[idxr] + a[idxr])
        idxr += 1
    if allfrog == idxr-idxl-1:
        print(idxr-idxl-1)
        break
    else:
        allfrog = idxr-idxl-1
0