結果

問題 No.3024 等式
ユーザー zimphazimpha
提出日時 2017-03-31 23:55:13
言語 PyPy2
(7.3.15)
結果
AC  
実行時間 1,062 ms / 5,000 ms
コード長 1,119 bytes
コンパイル時間 1,263 ms
コンパイル使用メモリ 76,296 KB
実行使用メモリ 98,900 KB
最終ジャッジ日時 2024-06-30 04:13:28
合計ジャッジ時間 8,160 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 124 ms
80,760 KB
testcase_01 AC 119 ms
81,056 KB
testcase_02 AC 164 ms
81,800 KB
testcase_03 AC 149 ms
82,340 KB
testcase_04 AC 121 ms
80,900 KB
testcase_05 AC 117 ms
80,932 KB
testcase_06 AC 463 ms
86,892 KB
testcase_07 AC 479 ms
87,528 KB
testcase_08 AC 493 ms
88,956 KB
testcase_09 AC 299 ms
84,800 KB
testcase_10 AC 231 ms
83,880 KB
testcase_11 AC 235 ms
84,364 KB
testcase_12 AC 239 ms
83,932 KB
testcase_13 AC 243 ms
83,348 KB
testcase_14 AC 235 ms
83,192 KB
testcase_15 AC 132 ms
81,060 KB
testcase_16 AC 125 ms
80,940 KB
testcase_17 AC 120 ms
81,156 KB
testcase_18 AC 218 ms
83,692 KB
testcase_19 AC 220 ms
84,000 KB
testcase_20 AC 216 ms
83,740 KB
testcase_21 AC 244 ms
84,388 KB
testcase_22 AC 1,062 ms
98,900 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from fractions import *

n = int(raw_input())
a = map(int, raw_input().split(' ' ))

def gao(a, v):
    for x in a:
        v[x] = 1
    n = len(a)
    for i in xrange(n):
        for j in xrange(n):
            if i == j:
                continue
            t = []
            for k in xrange(n):
                if k == i or k == j:
                    continue
                t.append(a[k])
            t.append(0)
            t[-1] = a[i] - a[j]
            gao(t, v)
            t[-1] = a[i] + a[j]
            gao(t, v)
            t[-1] = a[i] * a[j]
            gao(t, v)
            if a[j]:
                t[-1] = a[i] / a[j]
                gao(t, v)

for mask in xrange(1 << n):
    x = []
    y = []
    for i in xrange(n):
        if (mask >> i & 1):
            x.append(Fraction(a[i], 1))
        else:
            y.append(Fraction(a[i], 1))
    sx = {}
    sy = {}
    if not len(x) or not len(y):
        continue
    if n >= 6 and min(len(x), len(y)) <= 2:
        continue
    gao(x, sx)
    gao(y, sy)
    for v in sx:
        if v in sy:
            print 'YES'
            exit(0)
print 'NO'
0