結果

問題 No.1285 ゴミ捨て
ユーザー yuruhiyayuruhiya
提出日時 2020-11-13 21:59:32
言語 Crystal
(1.11.2)
結果
AC  
実行時間 27 ms / 2,000 ms
コード長 302 bytes
コンパイル時間 15,223 ms
コンパイル使用メモリ 295,404 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-05-06 14:32:23
合計ジャッジ時間 16,615 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,816 KB
testcase_01 AC 1 ms
6,816 KB
testcase_02 AC 2 ms
6,944 KB
testcase_03 AC 2 ms
6,944 KB
testcase_04 AC 1 ms
6,940 KB
testcase_05 AC 2 ms
6,944 KB
testcase_06 AC 2 ms
6,944 KB
testcase_07 AC 26 ms
6,940 KB
testcase_08 AC 3 ms
6,944 KB
testcase_09 AC 12 ms
6,940 KB
testcase_10 AC 23 ms
6,940 KB
testcase_11 AC 21 ms
6,944 KB
testcase_12 AC 16 ms
6,940 KB
testcase_13 AC 16 ms
6,940 KB
testcase_14 AC 25 ms
6,940 KB
testcase_15 AC 19 ms
6,940 KB
testcase_16 AC 7 ms
6,944 KB
testcase_17 AC 6 ms
6,944 KB
testcase_18 AC 6 ms
6,940 KB
testcase_19 AC 11 ms
6,940 KB
testcase_20 AC 5 ms
6,944 KB
testcase_21 AC 8 ms
6,940 KB
testcase_22 AC 27 ms
6,944 KB
testcase_23 AC 27 ms
6,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

lib C
  fun strtoll(s : UInt8*, p : UInt8**, b : Int32) : Int64
end

class String
  def to_i64
    C.strtoll(self, nil, 10)
  end
end

n = read_line.to_i
a = (1..n).map { read_line.to_i }.sort

q = Deque.new(a[...1])

a[1..].each do |i|
  if q[0] + 1 < i
    q.shift
  end
  q.push(i)
end

puts q.size
0