結果

問題 No.3024 等式
ユーザー cielciel
提出日時 2017-04-22 23:21:21
言語 Ruby
(3.3.0)
結果
TLE  
実行時間 -
コード長 414 bytes
コンパイル時間 84 ms
コンパイル使用メモリ 7,296 KB
実行使用メモリ 17,664 KB
最終ジャッジ日時 2024-07-21 16:31:33
合計ジャッジ時間 12,806 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 98 ms
12,032 KB
testcase_01 AC 98 ms
12,160 KB
testcase_02 AC 102 ms
12,160 KB
testcase_03 AC 101 ms
11,904 KB
testcase_04 AC 102 ms
12,160 KB
testcase_05 AC 95 ms
11,904 KB
testcase_06 AC 128 ms
12,288 KB
testcase_07 AC 124 ms
12,032 KB
testcase_08 AC 126 ms
12,416 KB
testcase_09 AC 95 ms
12,160 KB
testcase_10 AC 91 ms
12,032 KB
testcase_11 AC 97 ms
12,288 KB
testcase_12 AC 1,190 ms
12,160 KB
testcase_13 AC 1,211 ms
12,288 KB
testcase_14 AC 1,275 ms
12,416 KB
testcase_15 AC 115 ms
12,416 KB
testcase_16 AC 101 ms
12,288 KB
testcase_17 AC 133 ms
12,288 KB
testcase_18 AC 99 ms
11,904 KB
testcase_19 AC 107 ms
12,416 KB
testcase_20 AC 109 ms
12,416 KB
testcase_21 AC 100 ms
12,160 KB
testcase_22 TLE -
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.rb:19: warning: assigned but unused variable - n
Syntax OK

ソースコード

diff #

#!/usr/bin/ruby
def dfs(a,&block)
	return to_enum(:dfs,a) if !block_given?
	yield a[0] if a.size<2
	(a.size-1).times{|i|
		dfs(a[0..i]){|l|
			dfs(a[i+1..-1]){|r|
				(puts :YES;exit) if l==r
				next if l<r
				yield l+r
				yield l-r
				yield l*r
				yield l.is_a?(Rational) || r.is_a?(Rational) ? l/r : Rational(l,r)
			}
		}
	}
end

n,*a=`dd`.split.map(&:to_i)
a.permutation{|b|
	dfs(b).each{|e|
	}
}
puts :NO
0