結果

問題 No.3024 等式
ユーザー zimphazimpha
提出日時 2017-03-31 23:54:13
言語 PyPy2
(7.3.15)
結果
TLE  
実行時間 -
コード長 1,119 bytes
コンパイル時間 1,839 ms
コンパイル使用メモリ 76,716 KB
実行使用メモリ 140,996 KB
最終ジャッジ日時 2024-07-07 06:44:51
合計ジャッジ時間 11,760 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 120 ms
81,024 KB
testcase_01 AC 120 ms
81,024 KB
testcase_02 AC 156 ms
82,176 KB
testcase_03 AC 152 ms
82,048 KB
testcase_04 AC 125 ms
81,032 KB
testcase_05 AC 127 ms
80,896 KB
testcase_06 AC 460 ms
87,388 KB
testcase_07 AC 469 ms
87,268 KB
testcase_08 AC 481 ms
89,084 KB
testcase_09 AC 301 ms
85,320 KB
testcase_10 AC 235 ms
84,224 KB
testcase_11 AC 235 ms
84,352 KB
testcase_12 TLE -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
権限があれば一括ダウンロードができます

ソースコード

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 == 7 and min(len(x), len(y)) == 1:
        continue
    gao(x, sx)
    gao(y, sy)
    for v in sx:
        if v in sy:
            print 'YES'
            exit(0)
print 'NO'
0