結果
問題 | No.4 おもりと天秤 |
ユーザー | koyopro |
提出日時 | 2015-09-20 03:56:24 |
言語 | Python2 (2.7.18) |
結果 |
TLE
|
実行時間 | - |
コード長 | 430 bytes |
コンパイル時間 | 76 ms |
コンパイル使用メモリ | 6,912 KB |
実行使用メモリ | 13,896 KB |
最終ジャッジ日時 | 2024-07-19 08:16:26 |
合計ジャッジ時間 | 6,910 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 10 ms
6,816 KB |
testcase_01 | AC | 10 ms
6,940 KB |
testcase_02 | AC | 18 ms
6,940 KB |
testcase_03 | AC | 10 ms
6,940 KB |
testcase_04 | AC | 11 ms
6,944 KB |
testcase_05 | AC | 10 ms
6,940 KB |
testcase_06 | AC | 10 ms
6,944 KB |
testcase_07 | AC | 10 ms
6,944 KB |
testcase_08 | AC | 9 ms
6,940 KB |
testcase_09 | AC | 9 ms
6,940 KB |
testcase_10 | AC | 9 ms
6,940 KB |
testcase_11 | AC | 10 ms
6,940 KB |
testcase_12 | AC | 10 ms
6,944 KB |
testcase_13 | AC | 9 ms
6,940 KB |
testcase_14 | AC | 9 ms
6,940 KB |
testcase_15 | AC | 9 ms
6,940 KB |
testcase_16 | AC | 10 ms
6,944 KB |
testcase_17 | AC | 9 ms
6,940 KB |
testcase_18 | TLE | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
ソースコード
# -*- coding: utf-8 -*- n, = map(int, raw_input().split()) w = map(int, raw_input().split()) w = sorted(w) w.reverse() total = sum(w) if total % 2 == 1: print 'impossible' exit() half = total / 2 def is_pos(i, tmp): if tmp == half: return True if tmp > half: return False if i == len(w): return False return is_pos(i+1, tmp+w[i]) or is_pos(i+1, tmp) print 'possible' if is_pos(0, 0) else 'impossible'