結果

問題 No.3024 等式
ユーザー cielciel
提出日時 2017-04-22 22:37:32
言語 Python2
(2.7.18)
結果
TLE  
実行時間 -
コード長 516 bytes
コンパイル時間 106 ms
コンパイル使用メモリ 7,040 KB
実行使用メモリ 15,092 KB
最終ジャッジ日時 2024-07-21 16:22:00
合計ジャッジ時間 13,413 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 20 ms
8,020 KB
testcase_01 AC 19 ms
8,148 KB
testcase_02 AC 50 ms
8,020 KB
testcase_03 AC 49 ms
8,064 KB
testcase_04 AC 22 ms
8,192 KB
testcase_05 AC 22 ms
8,064 KB
testcase_06 AC 1,960 ms
8,020 KB
testcase_07 AC 2,031 ms
8,020 KB
testcase_08 AC 2,054 ms
8,148 KB
testcase_09 AC 22 ms
8,064 KB
testcase_10 AC 29 ms
8,148 KB
testcase_11 AC 208 ms
8,148 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 #

#!/usr/bin/python
from __future__ import print_function,division
from fractions import Fraction
import sys,itertools

def dfs(a):
	if len(a)<2: yield a[0]
	for i in range(len(a)-1):
		for l in dfs(a[:i+1]):
			for r in dfs(a[i+1:]):
				yield l+r
				yield l-r
				yield l*r
				if r!=0: yield Fraction(l,r)

n=int(sys.stdin.readline())
a=list(map(int,sys.stdin.readline().split()))
for q in range(3,n+1):
	for b in itertools.permutations(a,q):
		for e in dfs(b):
			if e==0:
				print('YES')
				exit(0)
print('NO')
0