結果
問題 | No.3024 等式 |
ユーザー | ciel |
提出日時 | 2017-04-22 22:37:45 |
言語 | PyPy2 (7.3.15) |
結果 |
TLE
|
実行時間 | - |
コード長 | 516 bytes |
コンパイル時間 | 1,357 ms |
コンパイル使用メモリ | 76,824 KB |
実行使用メモリ | 87,896 KB |
最終ジャッジ日時 | 2024-07-21 16:22:16 |
合計ジャッジ時間 | 10,530 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 127 ms
87,896 KB |
testcase_01 | AC | 124 ms
80,928 KB |
testcase_02 | AC | 212 ms
83,100 KB |
testcase_03 | AC | 217 ms
83,988 KB |
testcase_04 | AC | 133 ms
81,024 KB |
testcase_05 | AC | 127 ms
80,936 KB |
testcase_06 | AC | 473 ms
85,256 KB |
testcase_07 | AC | 469 ms
84,176 KB |
testcase_08 | AC | 461 ms
84,376 KB |
testcase_09 | AC | 131 ms
81,156 KB |
testcase_10 | AC | 144 ms
81,920 KB |
testcase_11 | AC | 288 ms
84,380 KB |
testcase_12 | TLE | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
ソースコード
#!/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')