結果
問題 | No.3024 等式 |
ユーザー | ciel |
提出日時 | 2017-04-22 22:26:11 |
言語 | Ruby (3.3.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 436 bytes |
コンパイル時間 | 31 ms |
コンパイル使用メモリ | 7,680 KB |
実行使用メモリ | 19,488 KB |
最終ジャッジ日時 | 2024-07-21 16:21:44 |
合計ジャッジ時間 | 8,374 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 87 ms
12,416 KB |
testcase_01 | AC | 82 ms
12,160 KB |
testcase_02 | AC | 87 ms
12,160 KB |
testcase_03 | AC | 84 ms
12,288 KB |
testcase_04 | AC | 81 ms
12,160 KB |
testcase_05 | AC | 81 ms
12,160 KB |
testcase_06 | AC | 296 ms
12,288 KB |
testcase_07 | AC | 299 ms
12,288 KB |
testcase_08 | AC | 310 ms
12,160 KB |
testcase_09 | AC | 81 ms
12,160 KB |
testcase_10 | AC | 86 ms
12,160 KB |
testcase_11 | AC | 105 ms
12,032 KB |
testcase_12 | TLE | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
コンパイルメッセージ
Syntax OK
ソースコード
#!/usr/bin/ruby 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| yield l+r yield l-r yield l*r yield l.is_a?(Rational) || r.is_a?(Rational) ? l/r : Rational(l,r) if r!=0 } } } end n,*a=`dd`.split.map(&:to_i) (3..n).each{|q| a.permutation(q){|b| dfs(b).each{|e| if e==0 puts :YES exit end } } } puts :NO