結果

問題 No.3024 等式
ユーザー cielciel
提出日時 2017-04-22 22:49:56
言語 PyPy2
(7.3.15)
結果
TLE  
実行時間 -
コード長 538 bytes
コンパイル時間 436 ms
コンパイル使用メモリ 76,732 KB
実行使用メモリ 96,828 KB
最終ジャッジ日時 2024-07-21 16:24:29
合計ジャッジ時間 9,838 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 133 ms
81,548 KB
testcase_01 AC 126 ms
81,176 KB
testcase_02 AC 197 ms
83,420 KB
testcase_03 AC 197 ms
83,144 KB
testcase_04 AC 125 ms
80,904 KB
testcase_05 AC 123 ms
81,032 KB
testcase_06 AC 504 ms
85,956 KB
testcase_07 AC 478 ms
85,296 KB
testcase_08 AC 467 ms
84,288 KB
testcase_09 AC 181 ms
82,840 KB
testcase_10 AC 251 ms
84,420 KB
testcase_11 AC 252 ms
84,068 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]):
			if l==0: print('YES');exit(0)
			for r in dfs(a[i+1:]):
				if r==0: print('YES');exit(0)
				yield l+r
				yield l-r
				yield l*r
				yield Fraction(l,r)

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