結果

問題 No.2918 Divide Applicants Fairly
ユーザー PNJPNJ
提出日時 2024-10-07 16:09:40
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 708 bytes
コンパイル時間 313 ms
コンパイル使用メモリ 81,792 KB
実行使用メモリ 241,656 KB
最終ジャッジ日時 2024-10-07 16:09:56
合計ジャッジ時間 15,436 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,224 KB
testcase_01 AC 37 ms
51,712 KB
testcase_02 AC 37 ms
52,096 KB
testcase_03 AC 38 ms
51,840 KB
testcase_04 AC 37 ms
51,968 KB
testcase_05 AC 43 ms
58,624 KB
testcase_06 AC 47 ms
59,776 KB
testcase_07 AC 40 ms
52,096 KB
testcase_08 AC 40 ms
52,224 KB
testcase_09 AC 62 ms
66,040 KB
testcase_10 AC 39 ms
52,096 KB
testcase_11 AC 1,436 ms
168,300 KB
testcase_12 AC 56 ms
64,332 KB
testcase_13 AC 51 ms
62,080 KB
testcase_14 AC 46 ms
59,776 KB
testcase_15 AC 37 ms
51,968 KB
testcase_16 AC 38 ms
51,840 KB
testcase_17 AC 58 ms
64,256 KB
testcase_18 AC 1,406 ms
175,340 KB
testcase_19 AC 38 ms
52,096 KB
testcase_20 AC 723 ms
118,084 KB
testcase_21 AC 57 ms
64,128 KB
testcase_22 AC 38 ms
51,712 KB
testcase_23 AC 60 ms
65,664 KB
testcase_24 AC 37 ms
51,968 KB
testcase_25 TLE -
testcase_26 AC 43 ms
58,240 KB
testcase_27 AC 376 ms
114,652 KB
testcase_28 AC 45 ms
59,648 KB
testcase_29 AC 51 ms
62,208 KB
testcase_30 AC 38 ms
52,096 KB
testcase_31 AC 52 ms
62,592 KB
testcase_32 AC 38 ms
51,712 KB
testcase_33 AC 38 ms
52,096 KB
testcase_34 AC 37 ms
51,968 KB
testcase_35 AC 37 ms
52,096 KB
testcase_36 AC 335 ms
114,572 KB
testcase_37 AC 162 ms
92,952 KB
testcase_38 AC 107 ms
85,248 KB
testcase_39 AC 38 ms
51,968 KB
testcase_40 AC 108 ms
84,764 KB
testcase_41 AC 161 ms
93,056 KB
testcase_42 AC 260 ms
115,032 KB
testcase_43 AC 462 ms
118,236 KB
testcase_44 AC 888 ms
166,948 KB
testcase_45 AC 1,596 ms
241,424 KB
testcase_46 AC 34 ms
52,112 KB
testcase_47 AC 36 ms
52,480 KB
testcase_48 AC 56 ms
65,680 KB
testcase_49 AC 157 ms
93,160 KB
testcase_50 AC 38 ms
51,840 KB
testcase_51 AC 57 ms
65,920 KB
testcase_52 AC 135 ms
87,040 KB
testcase_53 AC 65 ms
68,480 KB
testcase_54 AC 67 ms
68,352 KB
testcase_55 AC 82 ms
74,240 KB
testcase_56 AC 79 ms
74,368 KB
testcase_57 AC 369 ms
114,440 KB
testcase_58 AC 79 ms
74,112 KB
testcase_59 AC 89 ms
75,008 KB
testcase_60 AC 51 ms
62,336 KB
testcase_61 AC 82 ms
74,368 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def popcount(n):
  c=(n&0x5555555555555555)+((n>>1)&0x5555555555555555)
  c=(c&0x3333333333333333)+((c>>2)&0x3333333333333333)
  c=(c&0x0f0f0f0f0f0f0f0f)+((c>>4)&0x0f0f0f0f0f0f0f0f)
  c=(c&0x00ff00ff00ff00ff)+((c>>8)&0x00ff00ff00ff00ff)
  c=(c&0x0000ffff0000ffff)+((c>>16)&0x0000ffff0000ffff)
  c=(c&0x00000000ffffffff)+((c>>32)&0x00000000ffffffff)
  return c

N = int(input())
R = list(map(int,input().split()))

if N >= 26:
  print(0)
  exit()

dp = []
for i in range(1 << N):
  if popcount(i) != N // 2:
    continue
  r = 0
  for j in range(N):
    if (i >> j) & 1:
      r += R[j]
  dp.append(r)

ans = 800000
dp.sort()
le = len(dp)
for i in range(le - 1):
  ans = min(ans,dp[i + 1] - dp[i])
print(ans)
0