結果

問題 No.836 じょうよ
ユーザー te-shte-sh
提出日時 2021-07-06 13:36:18
言語 Crystal
(1.11.2)
結果
AC  
実行時間 229 ms / 1,000 ms
コード長 1,923 bytes
コンパイル時間 16,649 ms
コンパイル使用メモリ 254,376 KB
実行使用メモリ 5,252 KB
最終ジャッジ日時 2023-09-14 04:22:21
合計ジャッジ時間 21,643 ms
ジャッジサーバーID
(参考情報)
judge13 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 161 ms
5,076 KB
testcase_01 AC 2 ms
4,388 KB
testcase_02 AC 2 ms
4,380 KB
testcase_03 AC 2 ms
4,380 KB
testcase_04 AC 3 ms
4,400 KB
testcase_05 AC 2 ms
4,440 KB
testcase_06 AC 2 ms
4,472 KB
testcase_07 AC 2 ms
4,380 KB
testcase_08 AC 2 ms
4,448 KB
testcase_09 AC 3 ms
4,404 KB
testcase_10 AC 3 ms
4,464 KB
testcase_11 AC 19 ms
4,728 KB
testcase_12 AC 27 ms
4,872 KB
testcase_13 AC 17 ms
4,676 KB
testcase_14 AC 6 ms
4,472 KB
testcase_15 AC 22 ms
4,764 KB
testcase_16 AC 175 ms
5,252 KB
testcase_17 AC 159 ms
5,076 KB
testcase_18 AC 15 ms
4,748 KB
testcase_19 AC 33 ms
4,720 KB
testcase_20 AC 97 ms
5,164 KB
testcase_21 AC 8 ms
4,604 KB
testcase_22 AC 82 ms
5,204 KB
testcase_23 AC 179 ms
5,000 KB
testcase_24 AC 14 ms
4,600 KB
testcase_25 AC 63 ms
5,148 KB
testcase_26 AC 5 ms
4,532 KB
testcase_27 AC 7 ms
4,496 KB
testcase_28 AC 18 ms
4,792 KB
testcase_29 AC 9 ms
4,532 KB
testcase_30 AC 6 ms
4,532 KB
testcase_31 AC 22 ms
4,720 KB
testcase_32 AC 20 ms
4,804 KB
testcase_33 AC 6 ms
4,452 KB
testcase_34 AC 17 ms
4,708 KB
testcase_35 AC 19 ms
4,864 KB
testcase_36 AC 103 ms
5,072 KB
testcase_37 AC 97 ms
5,168 KB
testcase_38 AC 142 ms
5,024 KB
testcase_39 AC 114 ms
5,248 KB
testcase_40 AC 229 ms
5,124 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def main(io)
  l, r, n = io.get3(Int64)

  n.times do |j|
    io.put count_mod(r, j, n) - count_mod(l-1, j, n)
  end
end

def count_mod(i, j, n)
  i >= 0 ? (i-j) // n + 1 : 0
end

class ProconIO
  def initialize
    @buf = [] of String
    @index = 0
  end

  def get(k : T.class = Int32) forall T
    get_v(k)
  end

  def get(*ks : T.class) forall T
    ks.map { |k| get_v(k) }
  end

  macro define_getn
    {% for i in (2..9) %}
      def get{{i}}(k : T.class = Int32) forall T
        get({% for j in (1..i) %}k{% if j < i %}, {% end %}{% end %})
      end
    {% end %}
  end
  define_getn

  def get_a(n : Int, k : T.class = Int32) forall T
    Array.new(n) { get_v(k) }
  end

  def get_c(n : Int, k : T.class = Int32) forall T
    get_a(n, k)
  end

  def get_c(n : Int, *ks : T.class) forall T
    a = Array.new(n) { get(*ks) }
    ks.map_with_index { |_, i| a.map { |e| e[i] } }
  end

  macro define_getn_c
    {% for i in (2..9) %}
      def get{{i}}_c(n : Int, k : T.class = Int32) forall T
        get_c(n, {% for j in (1..i) %}k{% if j < i %}, {% end %}{% end %})
      end
    {% end %}
  end
  define_getn_c

  def get_m(r : Int, c : Int, k : T.class = Int32) forall T
    Array.new(r) { get_a(c, k) }
  end

  def put(*vs)
    vs.each.with_index do |v, i|
      put_v(v)
      print i < vs.size - 1 ? " " : "\n"
    end
  end

  def put_e(*vs)
    put(*vs)
    exit
  end


  private def get_v(k : Int32.class); get_token.to_i32; end
  private def get_v(k : Int64.class); get_token.to_i64; end
  private def get_v(k : String.class); get_token; end

  private def get_token
    if @buf.size == @index
      @buf = read_line.split
      @index = 0
    end
    v = @buf[@index]
    @index += 1
    v
  end

  private def put_v(vs : Enumerable)
    vs.each_with_index do |v, i|
      print v
      print " " if i < vs.size - 1
    end
  end

  private def put_v(v)
    print v
  end
end

main(ProconIO.new)
0