結果

問題 No.4 おもりと天秤
ユーザー rarpipipirarpipipi
提出日時 2023-12-31 03:44:42
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 350 bytes
コンパイル時間 345 ms
コンパイル使用メモリ 82,492 KB
実行使用メモリ 75,452 KB
最終ジャッジ日時 2024-09-27 17:00:51
合計ジャッジ時間 7,608 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
53,164 KB
testcase_01 AC 34 ms
53,156 KB
testcase_02 AC 72 ms
75,452 KB
testcase_03 AC 35 ms
53,196 KB
testcase_04 AC 37 ms
52,952 KB
testcase_05 AC 33 ms
52,804 KB
testcase_06 AC 32 ms
52,212 KB
testcase_07 AC 33 ms
54,052 KB
testcase_08 TLE -
testcase_09 -- -
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 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
sys.setrecursionlimit(10**6)
n=int(input())
w=list(map(int,input().split()))
mid=-(-sum(w)//2)

def dfs(i,le,ri):
    if i==n:
        if le==ri:
            print("possible")
            exit()
        return
    if w[i]+le<=mid:
        dfs(i+1,w[i]+le,ri)
    if w[i]+ri<=mid:
        dfs(i+1,le,w[i]+ri)

dfs(0,0,0)
print('impossible')
0