結果

問題 No.3024 等式
ユーザー cielciel
提出日時 2017-04-22 23:25:42
言語 PyPy2
(7.3.15)
結果
TLE  
実行時間 -
コード長 490 bytes
コンパイル時間 321 ms
コンパイル使用メモリ 77,316 KB
実行使用メモリ 101,256 KB
最終ジャッジ日時 2024-07-21 16:31:59
合計ジャッジ時間 15,625 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 133 ms
81,280 KB
testcase_01 AC 137 ms
81,024 KB
testcase_02 AC 148 ms
81,664 KB
testcase_03 AC 150 ms
81,280 KB
testcase_04 AC 140 ms
80,896 KB
testcase_05 AC 137 ms
80,896 KB
testcase_06 AC 368 ms
84,632 KB
testcase_07 AC 416 ms
85,908 KB
testcase_08 AC 412 ms
86,672 KB
testcase_09 AC 144 ms
81,280 KB
testcase_10 AC 152 ms
81,536 KB
testcase_11 AC 192 ms
82,432 KB
testcase_12 AC 1,266 ms
86,480 KB
testcase_13 AC 1,257 ms
87,732 KB
testcase_14 AC 1,370 ms
88,500 KB
testcase_15 AC 373 ms
86,108 KB
testcase_16 AC 155 ms
81,024 KB
testcase_17 AC 425 ms
86,216 KB
testcase_18 AC 144 ms
81,024 KB
testcase_19 AC 218 ms
83,408 KB
testcase_20 AC 255 ms
83,408 KB
testcase_21 AC 151 ms
81,676 KB
testcase_22 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/python
from __future__ import print_function
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:]):
				if l==r: print('YES');exit(0)
				if l<r: continue
				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): pass
print('NO')
0