結果

問題 No.871 かえるのうた
ユーザー ああいいああいい
提出日時 2022-04-19 18:47:04
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 439 bytes
コンパイル時間 394 ms
コンパイル使用メモリ 82,000 KB
実行使用メモリ 98,176 KB
最終ジャッジ日時 2024-06-10 16:46:13
合計ジャッジ時間 4,908 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
52,268 KB
testcase_01 WA -
testcase_02 AC 32 ms
52,324 KB
testcase_03 AC 35 ms
53,344 KB
testcase_04 AC 35 ms
52,608 KB
testcase_05 AC 35 ms
52,616 KB
testcase_06 AC 33 ms
51,952 KB
testcase_07 AC 33 ms
53,692 KB
testcase_08 AC 35 ms
59,276 KB
testcase_09 AC 35 ms
59,016 KB
testcase_10 AC 38 ms
60,320 KB
testcase_11 AC 35 ms
58,964 KB
testcase_12 AC 42 ms
68,264 KB
testcase_13 AC 37 ms
60,824 KB
testcase_14 AC 80 ms
92,908 KB
testcase_15 AC 79 ms
93,056 KB
testcase_16 AC 102 ms
94,508 KB
testcase_17 AC 84 ms
94,500 KB
testcase_18 AC 45 ms
68,044 KB
testcase_19 WA -
testcase_20 AC 47 ms
67,200 KB
testcase_21 AC 69 ms
85,860 KB
testcase_22 AC 34 ms
53,184 KB
testcase_23 AC 32 ms
52,148 KB
testcase_24 AC 32 ms
52,304 KB
testcase_25 AC 41 ms
62,860 KB
testcase_26 AC 43 ms
65,648 KB
testcase_27 AC 39 ms
64,840 KB
testcase_28 AC 31 ms
53,084 KB
testcase_29 AC 55 ms
86,604 KB
testcase_30 AC 80 ms
97,664 KB
testcase_31 AC 36 ms
60,152 KB
testcase_32 AC 76 ms
95,036 KB
testcase_33 AC 84 ms
96,184 KB
testcase_34 AC 44 ms
70,028 KB
testcase_35 AC 59 ms
88,920 KB
testcase_36 AC 78 ms
98,176 KB
testcase_37 AC 72 ms
87,140 KB
testcase_38 AC 93 ms
94,976 KB
testcase_39 WA -
testcase_40 AC 70 ms
92,600 KB
testcase_41 AC 35 ms
53,288 KB
testcase_42 AC 61 ms
89,344 KB
testcase_43 WA -
testcase_44 WA -
testcase_45 WA -
testcase_46 AC 33 ms
51,828 KB
testcase_47 AC 32 ms
51,456 KB
testcase_48 AC 34 ms
51,936 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