結果

問題 No.2918 Divide Applicants Fairly
ユーザー rlangevinrlangevin
提出日時 2024-10-12 00:21:02
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 632 bytes
コンパイル時間 434 ms
コンパイル使用メモリ 82,108 KB
実行使用メモリ 375,712 KB
最終ジャッジ日時 2024-10-12 00:21:33
合計ジャッジ時間 30,707 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
62,120 KB
testcase_01 AC 42 ms
55,244 KB
testcase_02 AC 42 ms
54,520 KB
testcase_03 AC 1,234 ms
317,048 KB
testcase_04 AC 1,287 ms
317,008 KB
testcase_05 AC 366 ms
241,116 KB
testcase_06 AC 340 ms
240,700 KB
testcase_07 AC 208 ms
135,592 KB
testcase_08 AC 726 ms
246,048 KB
testcase_09 AC 836 ms
260,976 KB
testcase_10 AC 1,445 ms
375,712 KB
testcase_11 AC 1,069 ms
273,264 KB
testcase_12 AC 877 ms
267,688 KB
testcase_13 AC 473 ms
242,604 KB
testcase_14 AC 353 ms
242,468 KB
testcase_15 AC 1,194 ms
299,332 KB
testcase_16 AC 1,545 ms
374,888 KB
testcase_17 AC 674 ms
266,636 KB
testcase_18 AC 1,197 ms
300,892 KB
testcase_19 AC 505 ms
95,412 KB
testcase_20 AC 822 ms
271,100 KB
testcase_21 AC 725 ms
258,404 KB
testcase_22 AC 206 ms
140,848 KB
testcase_23 AC 937 ms
261,924 KB
testcase_24 AC 1,488 ms
351,812 KB
testcase_25 AC 1,095 ms
282,964 KB
testcase_26 AC 529 ms
244,256 KB
testcase_27 AC 1,002 ms
268,584 KB
testcase_28 AC 436 ms
240,824 KB
testcase_29 AC 528 ms
240,140 KB
testcase_30 AC 1,251 ms
308,556 KB
testcase_31 AC 707 ms
267,688 KB
testcase_32 AC 1,350 ms
342,248 KB
testcase_33 TLE -
testcase_34 -- -
testcase_35 -- -
testcase_36 -- -
testcase_37 -- -
testcase_38 -- -
testcase_39 -- -
testcase_40 -- -
testcase_41 -- -
testcase_42 -- -
testcase_43 -- -
testcase_44 -- -
testcase_45 -- -
testcase_46 -- -
testcase_47 -- -
testcase_48 -- -
testcase_49 -- -
testcase_50 -- -
testcase_51 -- -
testcase_52 -- -
testcase_53 -- -
testcase_54 -- -
testcase_55 -- -
testcase_56 -- -
testcase_57 -- -
testcase_58 -- -
testcase_59 -- -
testcase_60 -- -
testcase_61 -- -
testcase_62 -- -
testcase_63 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import *

N = int(input())
R = list(map(int, input().split()))
pre = defaultdict(int)
M = sum(R) + 5
pre[0] = 1 << M
for i in range(N):
    dp = defaultdict(int)
    for k, v in pre.items():
        dp[k] |= v
        if k == 1:
            if (v >> (M + R[i])) & 1:
                print(0)
                exit()
        if k == -1:
            if (v >> (M - R[i])) & 1:
                print(0)
                exit()
        dp[k - 1] |= v >> R[i]
        dp[k + 1] |= v << R[i]
    dp, pre = pre, dp
    
for i in range(1, M):
    if (pre[0] >> (M + i)) & 1:
        print(i)
        exit()
        
print(pre)
0