結果

問題 No.871 かえるのうた
ユーザー tails1434tails1434
提出日時 2020-01-05 19:41:05
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 104 ms / 2,000 ms
コード長 665 bytes
コンパイル時間 375 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 98,552 KB
最終ジャッジ日時 2024-05-07 16:36:49
合計ジャッジ時間 4,669 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,248 KB
testcase_01 AC 36 ms
52,224 KB
testcase_02 AC 37 ms
52,116 KB
testcase_03 AC 38 ms
51,840 KB
testcase_04 AC 38 ms
52,008 KB
testcase_05 AC 38 ms
52,224 KB
testcase_06 AC 36 ms
52,096 KB
testcase_07 AC 37 ms
52,608 KB
testcase_08 AC 43 ms
59,164 KB
testcase_09 AC 41 ms
59,516 KB
testcase_10 AC 42 ms
58,112 KB
testcase_11 AC 41 ms
58,624 KB
testcase_12 AC 48 ms
67,492 KB
testcase_13 AC 43 ms
60,032 KB
testcase_14 AC 96 ms
93,440 KB
testcase_15 AC 87 ms
93,300 KB
testcase_16 AC 104 ms
94,116 KB
testcase_17 AC 88 ms
95,220 KB
testcase_18 AC 46 ms
68,392 KB
testcase_19 AC 101 ms
93,600 KB
testcase_20 AC 51 ms
64,512 KB
testcase_21 AC 72 ms
84,328 KB
testcase_22 AC 36 ms
52,348 KB
testcase_23 AC 34 ms
53,004 KB
testcase_24 AC 34 ms
52,212 KB
testcase_25 AC 40 ms
61,220 KB
testcase_26 AC 42 ms
64,740 KB
testcase_27 AC 46 ms
65,024 KB
testcase_28 AC 36 ms
51,840 KB
testcase_29 AC 64 ms
87,248 KB
testcase_30 AC 83 ms
97,816 KB
testcase_31 AC 42 ms
59,496 KB
testcase_32 AC 79 ms
94,964 KB
testcase_33 AC 86 ms
96,192 KB
testcase_34 AC 47 ms
70,496 KB
testcase_35 AC 68 ms
88,452 KB
testcase_36 AC 81 ms
98,552 KB
testcase_37 AC 68 ms
85,056 KB
testcase_38 AC 98 ms
95,432 KB
testcase_39 AC 88 ms
93,280 KB
testcase_40 AC 69 ms
88,064 KB
testcase_41 AC 35 ms
52,336 KB
testcase_42 AC 63 ms
86,788 KB
testcase_43 AC 38 ms
51,968 KB
testcase_44 AC 37 ms
52,608 KB
testcase_45 AC 44 ms
59,904 KB
testcase_46 AC 39 ms
51,944 KB
testcase_47 AC 37 ms
52,224 KB
testcase_48 AC 38 ms
52,480 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def main():
    N, K = map(int, input().split())
    X = list(map(int, input().split()))
    A = list(map(int, input().split()))
    l = r = K - 1
    ld = X[K-1] - A[K-1]
    rd = X[K-1] + A[K-1]

    updated = True
    while updated:
        updated = False

        while l - 1 >= 0 and ld <= X[l - 1]:
            updated = True
            l -= 1
            ld = min(ld, X[l] - A[l])
            rd = max(rd, X[l] + A[l])
        
        while r + 1 < N and rd >= X[r + 1]:
            updated = True
            r += 1
            ld = min(ld, X[r] - A[r])
            rd = max(rd, X[r] + A[r])

    print(r - l + 1)



if __name__ == "__main__":
    main()
0