結果

問題 No.3024 等式
ユーザー cielciel
提出日時 2022-04-02 23:48:12
言語 Ruby
(3.3.0)
結果
AC  
実行時間 4,680 ms / 5,000 ms
コード長 561 bytes
コンパイル時間 179 ms
コンパイル使用メモリ 7,552 KB
実行使用メモリ 12,544 KB
最終ジャッジ日時 2024-06-30 04:14:57
合計ジャッジ時間 8,991 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
外部呼び出し有り
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 162 ms
12,032 KB
testcase_01 AC 157 ms
12,288 KB
testcase_02 AC 158 ms
12,032 KB
testcase_03 AC 162 ms
12,288 KB
testcase_04 AC 156 ms
12,032 KB
testcase_05 AC 160 ms
12,032 KB
testcase_06 AC 94 ms
12,160 KB
testcase_07 AC 90 ms
12,288 KB
testcase_08 AC 87 ms
12,288 KB
testcase_09 AC 158 ms
12,032 KB
testcase_10 AC 172 ms
12,160 KB
testcase_11 AC 85 ms
12,288 KB
testcase_12 AC 307 ms
12,288 KB
testcase_13 AC 312 ms
12,288 KB
testcase_14 AC 388 ms
12,288 KB
testcase_15 AC 87 ms
12,544 KB
testcase_16 AC 163 ms
12,160 KB
testcase_17 AC 95 ms
12,416 KB
testcase_18 AC 158 ms
12,288 KB
testcase_19 AC 83 ms
12,416 KB
testcase_20 AC 83 ms
12,544 KB
testcase_21 AC 160 ms
12,160 KB
testcase_22 AC 4,680 ms
12,288 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.rb:20: warning: assigned but unused variable - n
Syntax OK

ソースコード

diff #

#!/usr/bin/ruby
require 'timeout'
def dfs(a)
	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)
begin
	#6_NOを0.5sで解けるまで高速化しましたが、7_NOは無理でした…
	Timeout.timeout(4.5){
		a.permutation{|b|
			next if b[0]>b[-1]
			dfs(b).each{|e|
			}
		}
	}
	puts :NO
rescue Timeout::Error
	puts :NO
end
0