結果
問題 | No.4 おもりと天秤 |
ユーザー | HIROPON87069639 |
提出日時 | 2016-03-09 21:49:38 |
言語 | Python2 (2.7.18) |
結果 |
WA
|
実行時間 | - |
コード長 | 383 bytes |
コンパイル時間 | 41 ms |
コンパイル使用メモリ | 7,040 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-09-24 17:06:01 |
合計ジャッジ時間 | 1,475 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 11 ms
6,812 KB |
testcase_01 | AC | 11 ms
6,812 KB |
testcase_02 | AC | 12 ms
6,812 KB |
testcase_03 | AC | 11 ms
6,940 KB |
testcase_04 | AC | 12 ms
6,944 KB |
testcase_05 | AC | 58 ms
6,944 KB |
testcase_06 | AC | 11 ms
6,944 KB |
testcase_07 | AC | 55 ms
6,940 KB |
testcase_08 | AC | 11 ms
6,944 KB |
testcase_09 | AC | 54 ms
6,944 KB |
testcase_10 | AC | 60 ms
6,944 KB |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | AC | 11 ms
6,944 KB |
testcase_14 | WA | - |
testcase_15 | AC | 11 ms
6,944 KB |
testcase_16 | AC | 11 ms
6,944 KB |
testcase_17 | AC | 11 ms
6,940 KB |
testcase_18 | AC | 43 ms
6,940 KB |
testcase_19 | AC | 50 ms
6,940 KB |
testcase_20 | AC | 50 ms
6,940 KB |
testcase_21 | AC | 48 ms
6,944 KB |
testcase_22 | AC | 48 ms
6,944 KB |
ソースコード
# -*- coding: utf-8 -*- #input N = input() W = map(int, raw_input().split()) if sum(W) % 2 == 1: print "impossible" exit() sumhalf = sum(W) / 2 # dynamic programming DP = [0] * (sumhalf + 100) DP[0] = 1 for w in W: for i in range(sumhalf): if DP[i] == 1: DP[i + w] = 1 # output if DP[sumhalf] == 1: print "possible" else: print "impossible"