結果

問題 No.250 atetubouのzetubou
ユーザー finefine
提出日時 2016-01-08 00:37:30
言語 Ruby
(3.3.0)
結果
AC  
実行時間 1,146 ms / 5,000 ms
コード長 258 bytes
コンパイル時間 65 ms
コンパイル使用メモリ 7,424 KB
実行使用メモリ 18,688 KB
最終ジャッジ日時 2024-06-08 02:02:17
合計ジャッジ時間 14,192 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 719 ms
18,304 KB
testcase_01 AC 197 ms
18,176 KB
testcase_02 AC 1,022 ms
18,688 KB
testcase_03 AC 1,146 ms
18,560 KB
testcase_04 AC 1,014 ms
18,176 KB
testcase_05 AC 1,046 ms
18,432 KB
testcase_06 AC 815 ms
18,432 KB
testcase_07 AC 440 ms
18,304 KB
testcase_08 AC 961 ms
18,176 KB
testcase_09 AC 758 ms
18,560 KB
testcase_10 AC 1,038 ms
18,304 KB
testcase_11 AC 657 ms
18,432 KB
testcase_12 AC 947 ms
18,432 KB
testcase_13 AC 566 ms
18,432 KB
testcase_14 AC 92 ms
17,280 KB
testcase_15 AC 139 ms
17,664 KB
testcase_16 AC 138 ms
17,664 KB
testcase_17 AC 141 ms
17,536 KB
testcase_18 AC 142 ms
17,536 KB
testcase_19 AC 137 ms
17,536 KB
testcase_20 AC 90 ms
16,768 KB
testcase_21 AC 87 ms
17,024 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

kaijou = [1]
1.upto(2999){|i|
    kaijou.push(i * kaijou[i - 1])
    }

gets.to_i.times{
    d,x,t = gets.split.map(&:to_i)
    ans = kaijou[x + d - 1] / kaijou[d - 1] / kaijou[x]
    if ans > t
        puts "ZETUBOU"
    else
        puts "AC"
    end
    }
0