結果

問題 No.4 おもりと天秤
ユーザー nidosinonidosino
提出日時 2017-06-03 03:39:52
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 1,448 bytes
コンパイル時間 202 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 10,880 KB
最終ジャッジ日時 2024-09-22 03:59:09
合計ジャッジ時間 1,824 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,752 KB
testcase_01 AC 30 ms
10,752 KB
testcase_02 AC 30 ms
10,624 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 29 ms
10,752 KB
testcase_06 AC 30 ms
10,752 KB
testcase_07 AC 30 ms
10,752 KB
testcase_08 AC 29 ms
10,880 KB
testcase_09 AC 30 ms
10,752 KB
testcase_10 WA -
testcase_11 AC 28 ms
10,880 KB
testcase_12 AC 31 ms
10,624 KB
testcase_13 AC 29 ms
10,752 KB
testcase_14 AC 30 ms
10,880 KB
testcase_15 AC 29 ms
10,752 KB
testcase_16 WA -
testcase_17 AC 29 ms
10,752 KB
testcase_18 AC 29 ms
10,880 KB
testcase_19 AC 29 ms
10,880 KB
testcase_20 AC 29 ms
10,624 KB
testcase_21 AC 29 ms
10,752 KB
testcase_22 AC 29 ms
10,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

'''
授業中にもかかわらず遊んでしまうdaveは、
理科の実験中に、色んな重さの種類があるおもりをすべて使って、
ちょうど天秤が水平になるおもりの組み合わせがあるかを知りたくなったようで、それに遊び呆けてる。
(すべてのおもりを使うため、使わなかったおもりはない。)

あなたは、daveにその組み合わせがあるかどうか教えて、授業に集中させるようにしてください。

もしそのような組み合わせがあれば possiblepossible 、なければ impossibleimpossible を出力してください。
'''


def last_one(l):
    last_index = 0
    for num_i, i in enumerate(l):
        if i == 1:
            last_index = num_i
    return last_index


def match_sum(l, a, where_sum=0):

    for num_i, i in enumerate(l):
        #print(i, a)
        if i < a:
            return [num_i + where_sum] + match_sum(l[num_i + 1:], a - i, where_sum + num_i + 1)
        elif i == a:
            return [num_i + where_sum]
    return [-1]

if __name__ == '__main__':

    A = int(input())
    S = list(map(int, input().split()))
    S.sort()
    S.reverse()
    half_sum = sum(S) / 2

    if sum(S) % 2 == 1:
        print("impossible")
    else:
        if -1 in match_sum(S, half_sum):
            print("impossible")
        else:
            print("possible")
0