結果
問題 | No.4 おもりと天秤 |
ユーザー | Tawara |
提出日時 | 2015-12-26 08:37:49 |
言語 | Python2 (2.7.18) |
結果 |
TLE
|
実行時間 | - |
コード長 | 153 bytes |
コンパイル時間 | 118 ms |
コンパイル使用メモリ | 6,912 KB |
実行使用メモリ | 25,664 KB |
最終ジャッジ日時 | 2024-09-19 00:14:39 |
合計ジャッジ時間 | 14,677 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 10 ms
6,816 KB |
testcase_01 | AC | 11 ms
6,812 KB |
testcase_02 | AC | 94 ms
9,300 KB |
testcase_03 | AC | 36 ms
7,932 KB |
testcase_04 | AC | 101 ms
10,024 KB |
testcase_05 | AC | 3,769 ms
25,308 KB |
testcase_06 | AC | 13 ms
7,028 KB |
testcase_07 | AC | 3,932 ms
25,664 KB |
testcase_08 | AC | 73 ms
6,940 KB |
testcase_09 | TLE | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
ソースコード
input();W=map(int,raw_input().split());S=sum(W) H=S/2;D=[0]*(H+101);D[0]=1 for w in W:i=H;exec("i-=1;D[i+w]|=D[i];"*H) print"impossible"[2*D[H]*(S%2^1):]