結果
問題 | No.250 atetubouのzetubou |
ユーザー | t_murano |
提出日時 | 2015-07-25 00:43:56 |
言語 | Crystal (1.11.2) |
結果 |
TLE
|
実行時間 | - |
コード長 | 545 bytes |
コンパイル時間 | 11,218 ms |
コンパイル使用メモリ | 295,500 KB |
実行使用メモリ | 10,016 KB |
最終ジャッジ日時 | 2024-06-30 18:42:02 |
合計ジャッジ時間 | 24,285 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | TLE | - |
testcase_01 | -- | - |
testcase_02 | -- | - |
testcase_03 | -- | - |
testcase_04 | -- | - |
testcase_05 | -- | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
ソースコード
q = gets.not_nil!.chomp.to_i q.times do d64, x64, t = gets.not_nil!.chomp.split.map{|s| s.to_i64} d = d64.to_i32 x = x64.to_i32 dp = Array.new(x+1, 1) (d-2).times do next_dp = Array.new(x+1, 0) dp.each_with_index do |v, i| break if v > 10*15 (x+1).times do |j| # puts "i:#{i} j:#{j}" next_dp[j + i] += v if i + j <= x end end # puts next_dp dp = next_dp end count = d == 1 ? 1 : dp.sum puts "count:#{count}" if count > t puts "ZETUBOU" else puts "AC" end end