結果

問題 No.871 かえるのうた
ユーザー 👑 rin204rin204
提出日時 2022-01-19 00:26:47
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 427 bytes
コンパイル時間 211 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 99,840 KB
最終ジャッジ日時 2024-11-23 13:38:56
合計ジャッジ時間 6,238 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
51,840 KB
testcase_01 WA -
testcase_02 AC 48 ms
51,840 KB
testcase_03 AC 41 ms
51,712 KB
testcase_04 AC 41 ms
51,840 KB
testcase_05 AC 42 ms
52,096 KB
testcase_06 WA -
testcase_07 AC 42 ms
51,840 KB
testcase_08 AC 46 ms
58,752 KB
testcase_09 AC 47 ms
59,392 KB
testcase_10 AC 46 ms
58,368 KB
testcase_11 AC 46 ms
58,496 KB
testcase_12 AC 56 ms
68,608 KB
testcase_13 AC 48 ms
59,904 KB
testcase_14 AC 113 ms
98,048 KB
testcase_15 AC 110 ms
97,280 KB
testcase_16 AC 119 ms
98,436 KB
testcase_17 AC 109 ms
97,152 KB
testcase_18 AC 58 ms
69,504 KB
testcase_19 WA -
testcase_20 AC 56 ms
64,768 KB
testcase_21 AC 82 ms
86,144 KB
testcase_22 AC 42 ms
51,712 KB
testcase_23 AC 41 ms
51,968 KB
testcase_24 AC 41 ms
51,968 KB
testcase_25 AC 50 ms
59,776 KB
testcase_26 AC 54 ms
64,000 KB
testcase_27 AC 53 ms
65,920 KB
testcase_28 AC 42 ms
52,224 KB
testcase_29 AC 79 ms
91,520 KB
testcase_30 AC 102 ms
99,840 KB
testcase_31 AC 47 ms
59,392 KB
testcase_32 AC 97 ms
99,200 KB
testcase_33 WA -
testcase_34 AC 61 ms
72,192 KB
testcase_35 AC 83 ms
92,544 KB
testcase_36 AC 98 ms
98,944 KB
testcase_37 AC 83 ms
86,912 KB
testcase_38 AC 114 ms
96,768 KB
testcase_39 WA -
testcase_40 AC 83 ms
92,672 KB
testcase_41 AC 42 ms
51,968 KB
testcase_42 AC 79 ms
91,264 KB
testcase_43 WA -
testcase_44 WA -
testcase_45 WA -
testcase_46 AC 41 ms
51,840 KB
testcase_47 AC 41 ms
51,712 KB
testcase_48 AC 41 ms
51,840 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, k = map(int, input().split())
X = [-10 ** 20] + list(map(int, input().split())) + [10 ** 20]
A = [0] + list(map(int, input().split())) + [0]

ans = 1
min_ = X[k] - A[k]
for i in range(k - 1, -1, -1):
    if X[i] < min_:
        break
    ans += 1
    min_ = min(min_, X[i] - A[i])

max_ = X[k] + A[k]
for i in range(k + 1, n + 2):
    if X[i] > max_:
        break
    ans += 1
    max_ = max(max_, X[i] + A[i])

print(ans)
0