結果

問題 No.2918 Divide Applicants Fairly
ユーザー PNJPNJ
提出日時 2024-10-07 15:39:09
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 749 bytes
コンパイル時間 292 ms
コンパイル使用メモリ 81,868 KB
実行使用メモリ 61,952 KB
最終ジャッジ日時 2024-10-07 15:39:14
合計ジャッジ時間 4,631 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
51,968 KB
testcase_01 AC 39 ms
52,096 KB
testcase_02 AC 39 ms
51,840 KB
testcase_03 AC 38 ms
51,968 KB
testcase_04 AC 38 ms
52,096 KB
testcase_05 AC 47 ms
60,416 KB
testcase_06 AC 50 ms
60,288 KB
testcase_07 AC 39 ms
52,096 KB
testcase_08 AC 40 ms
52,352 KB
testcase_09 AC 40 ms
52,352 KB
testcase_10 AC 39 ms
51,840 KB
testcase_11 AC 42 ms
51,712 KB
testcase_12 WA -
testcase_13 AC 51 ms
61,952 KB
testcase_14 AC 47 ms
60,160 KB
testcase_15 AC 38 ms
51,840 KB
testcase_16 AC 38 ms
52,352 KB
testcase_17 AC 38 ms
52,096 KB
testcase_18 AC 39 ms
51,584 KB
testcase_19 AC 38 ms
51,968 KB
testcase_20 AC 38 ms
51,584 KB
testcase_21 AC 38 ms
52,224 KB
testcase_22 AC 39 ms
51,840 KB
testcase_23 AC 40 ms
51,712 KB
testcase_24 AC 39 ms
52,096 KB
testcase_25 AC 39 ms
51,456 KB
testcase_26 AC 47 ms
60,672 KB
testcase_27 AC 39 ms
51,712 KB
testcase_28 AC 47 ms
60,288 KB
testcase_29 AC 49 ms
61,640 KB
testcase_30 AC 38 ms
51,840 KB
testcase_31 AC 53 ms
61,952 KB
testcase_32 AC 48 ms
52,224 KB
testcase_33 AC 39 ms
52,096 KB
testcase_34 AC 39 ms
51,712 KB
testcase_35 AC 39 ms
51,840 KB
testcase_36 WA -
testcase_37 WA -
testcase_38 WA -
testcase_39 AC 40 ms
52,480 KB
testcase_40 AC 39 ms
52,224 KB
testcase_41 AC 39 ms
51,584 KB
testcase_42 AC 41 ms
52,096 KB
testcase_43 AC 40 ms
51,712 KB
testcase_44 AC 39 ms
52,348 KB
testcase_45 AC 40 ms
52,352 KB
testcase_46 AC 40 ms
51,584 KB
testcase_47 AC 43 ms
51,840 KB
testcase_48 WA -
testcase_49 WA -
testcase_50 AC 46 ms
59,520 KB
testcase_51 WA -
testcase_52 AC 39 ms
52,096 KB
testcase_53 AC 48 ms
51,712 KB
testcase_54 AC 39 ms
51,840 KB
testcase_55 WA -
testcase_56 WA -
testcase_57 AC 39 ms
51,840 KB
testcase_58 WA -
testcase_59 WA -
testcase_60 AC 50 ms
61,824 KB
testcase_61 AC 38 ms
51,968 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 >= 16:
  print(0)
  exit()

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

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