結果

問題 No.3024 等式
ユーザー cielciel
提出日時 2017-04-22 23:25:52
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 490 bytes
コンパイル時間 264 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 92,836 KB
最終ジャッジ日時 2024-07-21 16:33:52
合計ジャッジ時間 15,958 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 180 ms
88,704 KB
testcase_01 AC 178 ms
88,192 KB
testcase_02 AC 172 ms
88,576 KB
testcase_03 AC 171 ms
88,448 KB
testcase_04 AC 167 ms
88,448 KB
testcase_05 AC 153 ms
88,448 KB
testcase_06 AC 411 ms
91,136 KB
testcase_07 AC 424 ms
91,264 KB
testcase_08 AC 392 ms
90,752 KB
testcase_09 AC 166 ms
88,320 KB
testcase_10 AC 167 ms
88,320 KB
testcase_11 AC 215 ms
89,600 KB
testcase_12 AC 1,230 ms
92,836 KB
testcase_13 AC 1,336 ms
92,320 KB
testcase_14 AC 1,293 ms
92,544 KB
testcase_15 AC 387 ms
91,656 KB
testcase_16 AC 163 ms
88,448 KB
testcase_17 AC 399 ms
90,800 KB
testcase_18 AC 180 ms
88,448 KB
testcase_19 AC 256 ms
89,728 KB
testcase_20 AC 270 ms
89,728 KB
testcase_21 AC 175 ms
88,960 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