結果

問題 No.3024 等式
ユーザー cielciel
提出日時 2017-04-22 23:26:59
言語 Ruby
(3.3.0)
結果
TLE  
実行時間 -
コード長 367 bytes
コンパイル時間 145 ms
コンパイル使用メモリ 7,424 KB
実行使用メモリ 19,356 KB
最終ジャッジ日時 2024-07-21 16:34:11
合計ジャッジ時間 12,530 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 93 ms
11,904 KB
testcase_01 AC 90 ms
12,288 KB
testcase_02 AC 93 ms
12,288 KB
testcase_03 AC 93 ms
12,160 KB
testcase_04 AC 91 ms
12,160 KB
testcase_05 AC 94 ms
12,160 KB
testcase_06 AC 124 ms
12,288 KB
testcase_07 AC 128 ms
12,416 KB
testcase_08 AC 126 ms
12,416 KB
testcase_09 AC 93 ms
12,160 KB
testcase_10 AC 97 ms
12,032 KB
testcase_11 AC 99 ms
12,416 KB
testcase_12 AC 1,149 ms
12,160 KB
testcase_13 AC 1,151 ms
12,544 KB
testcase_14 AC 1,230 ms
12,288 KB
testcase_15 AC 116 ms
12,032 KB
testcase_16 AC 97 ms
12,032 KB
testcase_17 AC 132 ms
12,160 KB
testcase_18 AC 95 ms
12,160 KB
testcase_19 AC 104 ms
12,160 KB
testcase_20 AC 106 ms
12,416 KB
testcase_21 AC 99 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 Rational(l,r)
			}
		}
	}
end

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