結果

問題 No.871 かえるのうた
ユーザー TakoKurageTakoKurage
提出日時 2019-08-30 21:42:22
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 388 bytes
コンパイル時間 99 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 28,844 KB
最終ジャッジ日時 2024-11-21 22:24:34
合計ジャッジ時間 4,737 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
10,752 KB
testcase_01 WA -
testcase_02 AC 30 ms
10,624 KB
testcase_03 AC 30 ms
10,752 KB
testcase_04 AC 30 ms
10,624 KB
testcase_05 AC 30 ms
10,752 KB
testcase_06 WA -
testcase_07 AC 30 ms
10,752 KB
testcase_08 AC 32 ms
11,008 KB
testcase_09 AC 33 ms
11,264 KB
testcase_10 AC 30 ms
10,624 KB
testcase_11 AC 31 ms
10,752 KB
testcase_12 AC 45 ms
13,312 KB
testcase_13 AC 33 ms
11,264 KB
testcase_14 AC 117 ms
27,920 KB
testcase_15 AC 116 ms
28,076 KB
testcase_16 AC 204 ms
28,844 KB
testcase_17 AC 110 ms
26,356 KB
testcase_18 AC 43 ms
13,200 KB
testcase_19 WA -
testcase_20 AC 43 ms
12,056 KB
testcase_21 AC 75 ms
16,960 KB
testcase_22 AC 29 ms
10,752 KB
testcase_23 AC 28 ms
10,624 KB
testcase_24 AC 29 ms
10,624 KB
testcase_25 AC 34 ms
10,880 KB
testcase_26 AC 45 ms
11,776 KB
testcase_27 AC 42 ms
12,800 KB
testcase_28 AC 29 ms
10,624 KB
testcase_29 AC 73 ms
17,696 KB
testcase_30 AC 149 ms
22,868 KB
testcase_31 AC 31 ms
11,008 KB
testcase_32 AC 124 ms
21,032 KB
testcase_33 WA -
testcase_34 AC 50 ms
14,968 KB
testcase_35 AC 78 ms
19,960 KB
testcase_36 AC 96 ms
22,300 KB
testcase_37 AC 100 ms
17,296 KB
testcase_38 AC 185 ms
25,656 KB
testcase_39 WA -
testcase_40 AC 127 ms
17,944 KB
testcase_41 AC 29 ms
10,752 KB
testcase_42 AC 126 ms
17,692 KB
testcase_43 WA -
testcase_44 WA -
testcase_45 WA -
testcase_46 AC 28 ms
10,624 KB
testcase_47 AC 28 ms
10,624 KB
testcase_48 AC 29 ms
10,496 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, K = [int(i) for i in input().split()]
X = [int(i) for i in input().split()]
A = [int(i) for i in input().split()]

ans = 1
cur = 1e50
for i in reversed(range(K - 1)):
    cur = min(cur, X[i + 1] - A[i + 1])
    if cur > X[i]:
        break
    ans += 1

cur = -1e50
for i in range(K, N):
    cur = max(cur, X[i - 1] + A[i - 1])
    if cur < X[i]:
        break
    ans += 1

print(ans)
0