結果

問題 No.4 おもりと天秤
ユーザー tcltktcltk
提出日時 2021-01-19 07:57:24
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 145 ms / 5,000 ms
コード長 955 bytes
コンパイル時間 266 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 89,632 KB
最終ジャッジ日時 2024-05-09 10:07:15
合計ジャッジ時間 4,673 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 132 ms
89,216 KB
testcase_01 AC 131 ms
89,216 KB
testcase_02 AC 133 ms
89,384 KB
testcase_03 AC 135 ms
89,472 KB
testcase_04 AC 141 ms
89,564 KB
testcase_05 AC 137 ms
89,088 KB
testcase_06 AC 128 ms
89,216 KB
testcase_07 AC 140 ms
89,516 KB
testcase_08 AC 128 ms
89,344 KB
testcase_09 AC 143 ms
89,380 KB
testcase_10 AC 145 ms
88,960 KB
testcase_11 AC 130 ms
89,216 KB
testcase_12 AC 132 ms
89,216 KB
testcase_13 AC 125 ms
89,344 KB
testcase_14 AC 136 ms
89,232 KB
testcase_15 AC 129 ms
89,224 KB
testcase_16 AC 132 ms
89,436 KB
testcase_17 AC 136 ms
89,268 KB
testcase_18 AC 136 ms
89,420 KB
testcase_19 AC 139 ms
89,332 KB
testcase_20 AC 141 ms
89,472 KB
testcase_21 AC 138 ms
89,028 KB
testcase_22 AC 141 ms
89,632 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#region Header
#!/usr/bin/env python3
# from typing import *

import sys
import io
import math
import collections
import decimal
import itertools
from queue import PriorityQueue
import bisect
import heapq

def input():
    return sys.stdin.readline()[:-1]

sys.setrecursionlimit(1000000)
#endregion

# _INPUT = """# paste here...
# """
# sys.stdin = io.StringIO(_INPUT)

YES = 'possible'
NO = 'impossible'


def main():
    N = int(input())
    W = list(map(int, input().split()))

    SumW = sum(W)
    if SumW % 2 == 1:
        print(NO)
        return

    dp = [[False for _ in range(SumW+1)] for _ in range(N+1)]
    dp[0][0] = True
    for i in range(N):
        for w in range(SumW+1):
            if dp[i][w]:
                dp[i+1][w] = True
                dp[i+1][w+W[i]] = True

    if dp[N][SumW//2]:
        print(YES)
    else:
        print(NO)


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