結果

問題 No.250 atetubouのzetubou
ユーザー simansiman
提出日時 2016-03-27 16:32:36
言語 Ruby
(3.3.0)
結果
AC  
実行時間 4,966 ms / 5,000 ms
コード長 606 bytes
コンパイル時間 112 ms
コンパイル使用メモリ 7,552 KB
実行使用メモリ 30,080 KB
最終ジャッジ日時 2024-10-02 05:05:55
合計ジャッジ時間 19,324 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 4,051 ms
24,448 KB
testcase_01 AC 1,614 ms
19,072 KB
testcase_02 AC 4,641 ms
28,544 KB
testcase_03 AC 4,966 ms
28,160 KB
testcase_04 AC 4,646 ms
30,080 KB
testcase_05 AC 4,866 ms
28,800 KB
testcase_06 AC 4,472 ms
29,568 KB
testcase_07 AC 3,380 ms
24,960 KB
testcase_08 AC 4,777 ms
28,160 KB
testcase_09 AC 4,266 ms
23,680 KB
testcase_10 AC 4,837 ms
28,928 KB
testcase_11 AC 3,985 ms
23,808 KB
testcase_12 AC 4,498 ms
29,824 KB
testcase_13 AC 3,671 ms
24,192 KB
testcase_14 AC 200 ms
16,896 KB
testcase_15 AC 947 ms
16,768 KB
testcase_16 AC 941 ms
17,536 KB
testcase_17 AC 927 ms
17,280 KB
testcase_18 AC 921 ms
17,024 KB
testcase_19 AC 926 ms
16,896 KB
testcase_20 AC 88 ms
12,160 KB
testcase_21 AC 94 ms
12,416 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

$cache = Hash.new

class Integer
  def combination(k)
    self.factorial/(k.factorial*(self-k).factorial)
  end

  def permutation(k)
    self.factorial/(self-k).factorial
  end

  def factorial
    return 1 if self == 0
    return $cache[self] if $cache[self]
    $cache[self] = (1..self).inject(:*)
  end
end

class Yukicoder
  def initialize
    q = gets.to_i

    answers = []

    q.times do
      d, x, t = gets.chomp.split.map(&:to_i)

      if (x+d-1).combination(d-1) <= t
        answers << "AC"
      else
        answers << "ZETUBOU"
      end
    end

    puts answers
  end
end

Yukicoder.new
0