結果

問題 No.871 かえるのうた
ユーザー もりをもりを
提出日時 2019-08-30 21:28:44
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 476 bytes
コンパイル時間 173 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 98,432 KB
最終ジャッジ日時 2024-11-21 21:56:42
合計ジャッジ時間 4,975 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
51,840 KB
testcase_01 WA -
testcase_02 AC 41 ms
51,712 KB
testcase_03 AC 41 ms
52,224 KB
testcase_04 AC 41 ms
51,584 KB
testcase_05 AC 45 ms
51,968 KB
testcase_06 WA -
testcase_07 AC 41 ms
51,712 KB
testcase_08 AC 46 ms
58,624 KB
testcase_09 AC 47 ms
59,136 KB
testcase_10 AC 45 ms
57,728 KB
testcase_11 AC 45 ms
58,240 KB
testcase_12 AC 55 ms
67,328 KB
testcase_13 AC 47 ms
59,648 KB
testcase_14 AC 102 ms
93,184 KB
testcase_15 AC 102 ms
93,184 KB
testcase_16 AC 110 ms
94,556 KB
testcase_17 AC 98 ms
94,720 KB
testcase_18 AC 55 ms
67,968 KB
testcase_19 WA -
testcase_20 AC 54 ms
64,384 KB
testcase_21 AC 78 ms
83,200 KB
testcase_22 AC 41 ms
51,968 KB
testcase_23 AC 40 ms
51,584 KB
testcase_24 AC 42 ms
51,968 KB
testcase_25 AC 49 ms
59,904 KB
testcase_26 AC 51 ms
63,872 KB
testcase_27 AC 51 ms
64,256 KB
testcase_28 AC 41 ms
51,712 KB
testcase_29 AC 73 ms
87,040 KB
testcase_30 AC 96 ms
97,664 KB
testcase_31 AC 46 ms
58,624 KB
testcase_32 AC 91 ms
95,104 KB
testcase_33 WA -
testcase_34 AC 58 ms
70,272 KB
testcase_35 AC 78 ms
88,064 KB
testcase_36 AC 93 ms
98,432 KB
testcase_37 AC 78 ms
84,224 KB
testcase_38 AC 106 ms
95,232 KB
testcase_39 WA -
testcase_40 AC 78 ms
87,552 KB
testcase_41 AC 43 ms
51,840 KB
testcase_42 AC 75 ms
86,784 KB
testcase_43 WA -
testcase_44 WA -
testcase_45 WA -
testcase_46 AC 41 ms
51,712 KB
testcase_47 AC 40 ms
51,456 KB
testcase_48 AC 41 ms
51,968 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,k = map(int,input().split())
x = list(map(int,input().split()))
a = list(map(int,input().split()))
k -= 1

res = 1

# left
piv = k - 1
til = x[k] - a[k]
while piv >= 0:
    if x[piv] >= til:
        res += 1
        til = min(til, x[piv] - a[piv])
        piv -= 1
    else:
        break

# right
piv = k + 1
til = x[k] + a[k]
while piv < n:
    if x[piv] <= til:
        res += 1
        til = max(til, x[piv] + a[piv])
        piv += 1
    else:
        break

print(res)
0