結果
問題 | No.4 おもりと天秤 |
ユーザー | warashi |
提出日時 | 2015-02-09 20:43:51 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
TLE
(最新)
AC
(最初)
|
実行時間 | - |
コード長 | 640 bytes |
コンパイル時間 | 599 ms |
コンパイル使用メモリ | 12,672 KB |
実行使用メモリ | 136,692 KB |
最終ジャッジ日時 | 2024-06-23 16:35:51 |
合計ジャッジ時間 | 7,819 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 30 ms
10,752 KB |
testcase_01 | AC | 30 ms
10,752 KB |
testcase_02 | AC | 140 ms
13,960 KB |
testcase_03 | AC | 30 ms
10,752 KB |
testcase_04 | AC | 30 ms
10,880 KB |
testcase_05 | AC | 40 ms
11,392 KB |
testcase_06 | AC | 29 ms
10,752 KB |
testcase_07 | AC | 44 ms
11,392 KB |
testcase_08 | AC | 30 ms
10,752 KB |
testcase_09 | AC | 29 ms
10,752 KB |
testcase_10 | AC | 130 ms
14,208 KB |
testcase_11 | AC | 30 ms
10,752 KB |
testcase_12 | AC | 30 ms
10,752 KB |
testcase_13 | AC | 30 ms
10,752 KB |
testcase_14 | AC | 30 ms
10,752 KB |
testcase_15 | AC | 30 ms
10,752 KB |
testcase_16 | AC | 30 ms
10,752 KB |
testcase_17 | AC | 30 ms
10,752 KB |
testcase_18 | TLE | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
ソースコード
#!/usr/bin/env python3 def memoize(f): table = {} def func(*args): if args not in table: table[args] = f(*args) return table[args] return func @memoize def ok(weight, rest): if weight < 0: return False if weight == 0: return True for w in rest: r = list(rest) r.remove(w) if ok(weight - w, tuple(sorted(r))): return True return False N = int(input()) W = [int(x) for x in input().split()] if sum(W) % 2 == 1: print("impossible") exit() if ok(sum(W) // 2, tuple(W)): print("possible") else: print("impossible")