結果

問題 No.871 かえるのうた
ユーザー titiatitia
提出日時 2019-08-30 22:18:23
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 285 ms / 2,000 ms
コード長 512 bytes
コンパイル時間 196 ms
コンパイル使用メモリ 82,424 KB
実行使用メモリ 99,284 KB
最終ジャッジ日時 2024-11-30 10:48:19
合計ジャッジ時間 6,815 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,336 KB
testcase_01 AC 39 ms
53,624 KB
testcase_02 AC 39 ms
54,024 KB
testcase_03 AC 51 ms
64,984 KB
testcase_04 AC 43 ms
61,260 KB
testcase_05 AC 48 ms
63,540 KB
testcase_06 AC 44 ms
60,304 KB
testcase_07 AC 44 ms
60,980 KB
testcase_08 AC 57 ms
68,548 KB
testcase_09 AC 61 ms
67,640 KB
testcase_10 AC 47 ms
62,424 KB
testcase_11 AC 49 ms
64,504 KB
testcase_12 AC 80 ms
76,268 KB
testcase_13 AC 64 ms
69,392 KB
testcase_14 AC 183 ms
94,072 KB
testcase_15 AC 193 ms
93,448 KB
testcase_16 AC 219 ms
94,988 KB
testcase_17 AC 174 ms
95,192 KB
testcase_18 AC 72 ms
74,416 KB
testcase_19 AC 231 ms
94,736 KB
testcase_20 AC 65 ms
69,008 KB
testcase_21 AC 133 ms
86,084 KB
testcase_22 AC 45 ms
60,444 KB
testcase_23 AC 41 ms
58,980 KB
testcase_24 AC 37 ms
53,308 KB
testcase_25 AC 54 ms
66,316 KB
testcase_26 AC 74 ms
71,180 KB
testcase_27 AC 68 ms
73,708 KB
testcase_28 AC 42 ms
59,840 KB
testcase_29 AC 138 ms
93,936 KB
testcase_30 AC 190 ms
99,284 KB
testcase_31 AC 53 ms
66,672 KB
testcase_32 AC 214 ms
95,284 KB
testcase_33 AC 191 ms
96,076 KB
testcase_34 AC 82 ms
77,100 KB
testcase_35 AC 141 ms
92,868 KB
testcase_36 AC 164 ms
98,712 KB
testcase_37 AC 129 ms
87,124 KB
testcase_38 AC 214 ms
95,360 KB
testcase_39 AC 285 ms
93,652 KB
testcase_40 AC 167 ms
92,916 KB
testcase_41 AC 38 ms
54,000 KB
testcase_42 AC 159 ms
91,812 KB
testcase_43 AC 37 ms
53,756 KB
testcase_44 AC 43 ms
60,296 KB
testcase_45 AC 55 ms
65,792 KB
testcase_46 AC 44 ms
53,764 KB
testcase_47 AC 35 ms
52,948 KB
testcase_48 AC 37 ms
53,252 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,K=map(int,input().split())
X=list(map(int,input().split()))
A=list(map(int,input().split()))

K-=1
ANS=[0]*N
PLUS=X[K]+A[K]
MINUS=X[K]-A[K]

for roop in range(100):

    for i in range(N):
        if X[i]<=PLUS and X[i]>=MINUS:
            ANS[i]=1
            PLUS=max(PLUS,X[i]+A[i])
            MINUS=min(MINUS,X[i]-A[i])

    for i in range(N-1,-1,-1):
        if X[i]<=PLUS and X[i]>=MINUS:
            ANS[i]=1
            PLUS=max(PLUS,X[i]+A[i])
            MINUS=min(MINUS,X[i]-A[i])

print(sum(ANS))
0