結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,428 KB
testcase_01 WA -
testcase_02 AC 39 ms
52,064 KB
testcase_03 AC 34 ms
51,932 KB
testcase_04 AC 36 ms
52,564 KB
testcase_05 AC 35 ms
51,936 KB
testcase_06 WA -
testcase_07 AC 36 ms
52,204 KB
testcase_08 AC 40 ms
59,436 KB
testcase_09 AC 40 ms
60,916 KB
testcase_10 AC 42 ms
59,004 KB
testcase_11 AC 38 ms
58,708 KB
testcase_12 AC 43 ms
68,280 KB
testcase_13 AC 39 ms
60,376 KB
testcase_14 AC 87 ms
93,388 KB
testcase_15 AC 84 ms
92,880 KB
testcase_16 AC 93 ms
94,108 KB
testcase_17 AC 84 ms
94,640 KB
testcase_18 AC 46 ms
68,500 KB
testcase_19 WA -
testcase_20 AC 44 ms
65,056 KB
testcase_21 AC 65 ms
83,036 KB
testcase_22 AC 36 ms
52,624 KB
testcase_23 AC 36 ms
53,688 KB
testcase_24 AC 35 ms
52,028 KB
testcase_25 AC 42 ms
60,432 KB
testcase_26 AC 45 ms
64,476 KB
testcase_27 AC 42 ms
64,740 KB
testcase_28 AC 36 ms
53,556 KB
testcase_29 AC 61 ms
87,864 KB
testcase_30 AC 78 ms
97,904 KB
testcase_31 AC 37 ms
59,424 KB
testcase_32 AC 76 ms
94,500 KB
testcase_33 WA -
testcase_34 AC 48 ms
70,900 KB
testcase_35 AC 63 ms
88,368 KB
testcase_36 AC 76 ms
98,244 KB
testcase_37 AC 63 ms
84,460 KB
testcase_38 AC 87 ms
95,048 KB
testcase_39 WA -
testcase_40 AC 63 ms
88,028 KB
testcase_41 AC 34 ms
51,932 KB
testcase_42 AC 60 ms
87,136 KB
testcase_43 WA -
testcase_44 WA -
testcase_45 WA -
testcase_46 AC 35 ms
52,924 KB
testcase_47 AC 36 ms
52,696 KB
testcase_48 AC 35 ms
52,192 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