結果

問題 No.4 おもりと天秤
ユーザー _manji0_manji0
提出日時 2022-01-14 01:09:08
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 467 bytes
コンパイル時間 271 ms
コンパイル使用メモリ 82,460 KB
実行使用メモリ 53,920 KB
最終ジャッジ日時 2024-11-17 22:14:24
合計ジャッジ時間 1,642 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
52,008 KB
testcase_01 AC 31 ms
53,844 KB
testcase_02 AC 30 ms
52,496 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 30 ms
53,236 KB
testcase_06 AC 30 ms
52,780 KB
testcase_07 AC 29 ms
52,556 KB
testcase_08 AC 30 ms
52,972 KB
testcase_09 AC 30 ms
52,268 KB
testcase_10 WA -
testcase_11 AC 30 ms
53,920 KB
testcase_12 AC 30 ms
52,576 KB
testcase_13 AC 30 ms
52,956 KB
testcase_14 AC 29 ms
52,624 KB
testcase_15 AC 29 ms
52,928 KB
testcase_16 WA -
testcase_17 AC 30 ms
52,808 KB
testcase_18 AC 30 ms
52,968 KB
testcase_19 AC 30 ms
52,276 KB
testcase_20 AC 30 ms
52,748 KB
testcase_21 AC 29 ms
51,900 KB
testcase_22 AC 30 ms
52,292 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def main():
    N = int(input())
    W = [ int(i) for i in input().split() ]

    su = sum(W)

    if su % 2 == 1:
        print("impossible")
        return

    su = su // 2

    ans1 = 0
    ans2 = 0

    W.sort()

    while W:
        w = W.pop()

        if ans1 + w <= su:
            ans1 += w
        else:
            ans2 += w

    if ans1 == ans2 == su:
        print("possible")
    else:
        print("impossible")

if __name__ == "__main__":
    main()
0