結果

問題 No.871 かえるのうた
ユーザー O2MTO2MT
提出日時 2020-08-24 12:20:53
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 453 bytes
コンパイル時間 178 ms
コンパイル使用メモリ 82,052 KB
実行使用メモリ 100,620 KB
最終ジャッジ日時 2024-11-06 10:13:48
合計ジャッジ時間 11,253 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
59,428 KB
testcase_01 AC 39 ms
52,204 KB
testcase_02 AC 37 ms
53,228 KB
testcase_03 AC 38 ms
52,072 KB
testcase_04 AC 37 ms
52,740 KB
testcase_05 AC 38 ms
52,532 KB
testcase_06 AC 37 ms
53,308 KB
testcase_07 AC 38 ms
53,348 KB
testcase_08 AC 47 ms
62,452 KB
testcase_09 AC 48 ms
65,012 KB
testcase_10 AC 49 ms
62,652 KB
testcase_11 AC 46 ms
61,556 KB
testcase_12 AC 66 ms
73,396 KB
testcase_13 AC 54 ms
64,864 KB
testcase_14 AC 100 ms
93,432 KB
testcase_15 AC 102 ms
93,452 KB
testcase_16 AC 114 ms
94,880 KB
testcase_17 AC 96 ms
95,452 KB
testcase_18 AC 54 ms
71,900 KB
testcase_19 AC 556 ms
95,236 KB
testcase_20 AC 49 ms
65,432 KB
testcase_21 AC 481 ms
85,984 KB
testcase_22 AC 38 ms
53,116 KB
testcase_23 AC 39 ms
53,376 KB
testcase_24 AC 38 ms
53,260 KB
testcase_25 AC 52 ms
64,172 KB
testcase_26 AC 59 ms
68,912 KB
testcase_27 AC 52 ms
68,724 KB
testcase_28 AC 38 ms
52,764 KB
testcase_29 AC 71 ms
91,896 KB
testcase_30 AC 550 ms
98,932 KB
testcase_31 AC 47 ms
62,276 KB
testcase_32 AC 1,067 ms
95,580 KB
testcase_33 AC 181 ms
96,224 KB
testcase_34 AC 56 ms
73,184 KB
testcase_35 AC 100 ms
93,000 KB
testcase_36 AC 91 ms
98,716 KB
testcase_37 AC 178 ms
87,656 KB
testcase_38 AC 258 ms
95,164 KB
testcase_39 AC 1,259 ms
93,276 KB
testcase_40 TLE -
testcase_41 -- -
testcase_42 -- -
testcase_43 -- -
testcase_44 -- -
testcase_45 -- -
testcase_46 -- -
testcase_47 -- -
testcase_48 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

N,K = map(int,input().split())
X = list(map(int,input().split()))
A = list(map(int,input().split()))
check = [0]*N
kukan = [X[K-1]-A[K-1], X[K-1]+A[K-1]]
flg = True
while flg:
  count = 0
  for i in range(N):
    if kukan[0] <= X[i] <= kukan[1] and check[i] == 0:
      check[i] = 1
      count += 1
      kukan[0] = min(kukan[0], X[i]-A[i])
      kukan[1] = max(kukan[1], X[i]+A[i])
  if count == 0 or sum(check) == N:
    flg = False
print(sum(check))
0