結果
問題 | No.3024 等式 |
ユーザー | ciel |
提出日時 | 2017-04-22 22:50:04 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 538 bytes |
コンパイル時間 | 299 ms |
コンパイル使用メモリ | 12,544 KB |
実行使用メモリ | 18,208 KB |
最終ジャッジ日時 | 2024-07-21 16:30:22 |
合計ジャッジ時間 | 10,329 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 34 ms
11,392 KB |
testcase_01 | AC | 34 ms
11,392 KB |
testcase_02 | AC | 46 ms
11,392 KB |
testcase_03 | AC | 48 ms
11,392 KB |
testcase_04 | AC | 34 ms
11,392 KB |
testcase_05 | AC | 35 ms
11,392 KB |
testcase_06 | AC | 836 ms
11,392 KB |
testcase_07 | AC | 867 ms
11,392 KB |
testcase_08 | AC | 875 ms
11,392 KB |
testcase_09 | AC | 43 ms
11,392 KB |
testcase_10 | AC | 61 ms
11,392 KB |
testcase_11 | AC | 55 ms
11,392 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]): 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')