結果
問題 | No.375 立方体のN等分 (1) |
ユーザー | suppy193 |
提出日時 | 2016-07-11 15:48:55 |
言語 | Ruby (3.3.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 924 bytes |
コンパイル時間 | 112 ms |
コンパイル使用メモリ | 7,424 KB |
実行使用メモリ | 12,928 KB |
最終ジャッジ日時 | 2024-10-13 11:20:56 |
合計ジャッジ時間 | 4,463 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 93 ms
12,160 KB |
testcase_01 | AC | 92 ms
12,416 KB |
testcase_02 | RE | - |
testcase_03 | AC | 92 ms
12,288 KB |
testcase_04 | AC | 91 ms
12,288 KB |
testcase_05 | AC | 92 ms
12,288 KB |
testcase_06 | WA | - |
testcase_07 | RE | - |
testcase_08 | RE | - |
testcase_09 | WA | - |
testcase_10 | RE | - |
testcase_11 | RE | - |
testcase_12 | RE | - |
testcase_13 | RE | - |
testcase_14 | RE | - |
testcase_15 | RE | - |
testcase_16 | RE | - |
testcase_17 | RE | - |
testcase_18 | RE | - |
testcase_19 | RE | - |
testcase_20 | RE | - |
testcase_21 | RE | - |
testcase_22 | RE | - |
testcase_23 | AC | 98 ms
12,544 KB |
testcase_24 | AC | 92 ms
12,416 KB |
testcase_25 | RE | - |
testcase_26 | AC | 117 ms
12,416 KB |
testcase_27 | RE | - |
testcase_28 | WA | - |
testcase_29 | WA | - |
testcase_30 | WA | - |
testcase_31 | AC | 111 ms
12,544 KB |
testcase_32 | AC | 125 ms
12,672 KB |
testcase_33 | RE | - |
コンパイルメッセージ
Main.rb:34: warning: assigned but unused variable - set Syntax OK
ソースコード
require 'prime' p_arr = [] n = gets.strip.to_i p = n.prime_division #p p p.each do |pf| pf[1].times do p_arr << pf[0] end end min = Float::INFINITY #p p_arr (1..(p_arr.length - 2)).each do |i| p_arr.combination(i).each do |set1| #p set1 p2_arr = p_arr.clone set1.each do |n| if p2_arr.index(n) != nil p2_arr[p2_arr.index(n)] = nil end end #p p2_arr.compact! (1..(p2_arr.length - 2)).each do |j| p2_arr.combination(j).each do |set2| #p set2 next if set2 == [nil] p3_arr = p2_arr.clone set2.each do |m| if p3_arr.index(m) != nil p3_arr[p3_arr.index(m)] = nil end end set3 = p3_arr.compact! set = [set1, set2, set3] #p set num = set1.inject(:*) - 1 + set2.inject(:*) - 1 + set3.inject(:*) - 1 if num < min min = num end end end end end if min == Float::INFINITY print "#{n - 1}" else print "#{min}" end print " #{n - 1}\n"