結果

問題 No.871 かえるのうた
ユーザー ああいいああいい
提出日時 2022-04-19 18:47:04
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 439 bytes
コンパイル時間 297 ms
コンパイル使用メモリ 82,884 KB
実行使用メモリ 99,052 KB
最終ジャッジ日時 2025-01-02 09:48:12
合計ジャッジ時間 4,657 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,140 KB
testcase_01 WA -
testcase_02 AC 36 ms
53,596 KB
testcase_03 AC 34 ms
53,268 KB
testcase_04 AC 34 ms
52,636 KB
testcase_05 AC 35 ms
52,652 KB
testcase_06 AC 34 ms
53,444 KB
testcase_07 AC 36 ms
52,212 KB
testcase_08 AC 37 ms
61,048 KB
testcase_09 AC 38 ms
60,796 KB
testcase_10 AC 39 ms
58,712 KB
testcase_11 AC 39 ms
58,480 KB
testcase_12 AC 44 ms
67,944 KB
testcase_13 AC 42 ms
61,024 KB
testcase_14 AC 90 ms
93,708 KB
testcase_15 AC 89 ms
93,732 KB
testcase_16 AC 102 ms
94,696 KB
testcase_17 AC 89 ms
95,256 KB
testcase_18 AC 45 ms
68,504 KB
testcase_19 WA -
testcase_20 AC 52 ms
67,744 KB
testcase_21 AC 77 ms
85,840 KB
testcase_22 AC 36 ms
52,032 KB
testcase_23 AC 33 ms
52,804 KB
testcase_24 AC 35 ms
52,744 KB
testcase_25 AC 44 ms
63,024 KB
testcase_26 AC 45 ms
67,028 KB
testcase_27 AC 41 ms
66,128 KB
testcase_28 AC 35 ms
52,556 KB
testcase_29 AC 58 ms
87,424 KB
testcase_30 AC 84 ms
98,108 KB
testcase_31 AC 38 ms
59,892 KB
testcase_32 AC 84 ms
95,124 KB
testcase_33 AC 86 ms
97,012 KB
testcase_34 AC 46 ms
70,772 KB
testcase_35 AC 63 ms
89,216 KB
testcase_36 AC 80 ms
99,052 KB
testcase_37 AC 75 ms
87,356 KB
testcase_38 AC 97 ms
95,596 KB
testcase_39 WA -
testcase_40 AC 73 ms
93,140 KB
testcase_41 AC 35 ms
53,540 KB
testcase_42 AC 65 ms
90,404 KB
testcase_43 WA -
testcase_44 WA -
testcase_45 WA -
testcase_46 AC 35 ms
52,156 KB
testcase_47 AC 35 ms
52,716 KB
testcase_48 AC 34 ms
53,180 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,K = map(int,input().split())
X = list(map(int,input().split()))
A = list(map(int,input().split()))
K -= 1

migi = X[K] + A[K]
hidari = X[K] - A[K]
stack = [(K,1),(K,-1)]
ans = 1
while stack:
    now,d = stack.pop()
    if 0 <= now + d < N and hidari <= X[now + d] <= migi:
        migi = max(migi,X[now + d] + A[now + d])
        hidari = min(hidari,X[now + d] - A[now + d])
        stack.append((now + d,d))
        ans += 1
print(ans)
0