結果

問題 No.871 かえるのうた
ユーザー ああいいああいい
提出日時 2022-04-19 18:42:04
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 372 bytes
コンパイル時間 387 ms
コンパイル使用メモリ 82,036 KB
実行使用メモリ 99,080 KB
最終ジャッジ日時 2025-01-02 09:33:46
合計ジャッジ時間 5,912 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,636 KB
testcase_01 WA -
testcase_02 AC 36 ms
53,672 KB
testcase_03 AC 36 ms
52,836 KB
testcase_04 AC 33 ms
52,612 KB
testcase_05 AC 33 ms
53,744 KB
testcase_06 WA -
testcase_07 AC 35 ms
52,464 KB
testcase_08 AC 39 ms
60,096 KB
testcase_09 AC 38 ms
59,796 KB
testcase_10 AC 39 ms
59,260 KB
testcase_11 AC 40 ms
59,036 KB
testcase_12 AC 46 ms
68,624 KB
testcase_13 AC 42 ms
60,536 KB
testcase_14 AC 92 ms
93,732 KB
testcase_15 AC 88 ms
93,564 KB
testcase_16 AC 103 ms
94,584 KB
testcase_17 AC 90 ms
95,660 KB
testcase_18 AC 47 ms
69,132 KB
testcase_19 WA -
testcase_20 AC 49 ms
66,028 KB
testcase_21 AC 68 ms
83,868 KB
testcase_22 AC 35 ms
53,268 KB
testcase_23 AC 34 ms
52,152 KB
testcase_24 AC 34 ms
52,308 KB
testcase_25 AC 39 ms
61,476 KB
testcase_26 AC 40 ms
64,196 KB
testcase_27 AC 42 ms
65,276 KB
testcase_28 AC 33 ms
52,748 KB
testcase_29 AC 67 ms
88,600 KB
testcase_30 AC 79 ms
98,152 KB
testcase_31 AC 38 ms
59,792 KB
testcase_32 AC 82 ms
95,384 KB
testcase_33 WA -
testcase_34 AC 49 ms
70,636 KB
testcase_35 AC 71 ms
90,208 KB
testcase_36 AC 78 ms
99,080 KB
testcase_37 AC 65 ms
85,316 KB
testcase_38 AC 90 ms
95,548 KB
testcase_39 WA -
testcase_40 AC 62 ms
87,992 KB
testcase_41 AC 33 ms
52,820 KB
testcase_42 AC 65 ms
87,976 KB
testcase_43 WA -
testcase_44 WA -
testcase_45 WA -
testcase_46 AC 38 ms
52,624 KB
testcase_47 AC 40 ms
52,388 KB
testcase_48 AC 37 ms
52,968 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,K = map(int,input().split())
X = list(map(int,input().split()))
A = list(map(int,input().split()))
migi = K
K -= 1
now = X[K] + A[K]
while migi < N and X[migi] <= now:
    now = max(now,X[migi] + A[migi])
    migi += 1
hidari = K
now = X[K] - A[K]
while hidari >= 0 and X[hidari] >= now:
    now = min(now,X[hidari] - A[hidari])
    hidari -= 1
print(migi - hidari - 1)
0