結果

問題 No.1285 ゴミ捨て
ユーザー qibqib
提出日時 2022-10-28 21:46:49
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 338 bytes
コンパイル時間 241 ms
コンパイル使用メモリ 82,456 KB
実行使用メモリ 79,984 KB
最終ジャッジ日時 2024-07-06 00:53:09
合計ジャッジ時間 5,094 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,636 KB
testcase_01 AC 37 ms
53,176 KB
testcase_02 AC 38 ms
53,100 KB
testcase_03 AC 38 ms
53,068 KB
testcase_04 AC 37 ms
52,708 KB
testcase_05 AC 38 ms
52,924 KB
testcase_06 AC 38 ms
52,820 KB
testcase_07 WA -
testcase_08 AC 79 ms
75,160 KB
testcase_09 AC 122 ms
77,968 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 89 ms
77,056 KB
testcase_17 AC 88 ms
76,744 KB
testcase_18 AC 87 ms
76,780 KB
testcase_19 WA -
testcase_20 AC 85 ms
76,956 KB
testcase_21 AC 105 ms
77,112 KB
testcase_22 WA -
testcase_23 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import bisect as bs

n = int(input())
a = sorted([int(input()) for _ in range(n)])

used = [False for _ in range(n)]
ans = 0
for i in range(n):
  if used[i]:
    continue
  used[i] = True
  ans += 1
  cur = i
  while cur < n:
    j = bs.bisect_left(a, a[cur] + 2)
    if j < n and not used[j]:
      used[j] = True
    cur = j

print(ans)
0