結果

問題 No.2918 Divide Applicants Fairly
ユーザー PNJPNJ
提出日時 2024-10-07 16:21:31
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 783 bytes
コンパイル時間 231 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 248,096 KB
最終ジャッジ日時 2024-10-07 16:21:46
合計ジャッジ時間 15,033 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
52,224 KB
testcase_01 AC 38 ms
52,096 KB
testcase_02 AC 38 ms
52,224 KB
testcase_03 AC 38 ms
52,480 KB
testcase_04 AC 38 ms
51,968 KB
testcase_05 AC 43 ms
58,112 KB
testcase_06 AC 45 ms
59,392 KB
testcase_07 AC 38 ms
52,096 KB
testcase_08 AC 45 ms
52,096 KB
testcase_09 AC 56 ms
63,616 KB
testcase_10 AC 39 ms
52,352 KB
testcase_11 AC 1,346 ms
173,772 KB
testcase_12 AC 52 ms
62,208 KB
testcase_13 AC 46 ms
60,032 KB
testcase_14 AC 45 ms
59,904 KB
testcase_15 AC 39 ms
51,968 KB
testcase_16 AC 39 ms
51,584 KB
testcase_17 AC 53 ms
62,720 KB
testcase_18 AC 1,344 ms
181,456 KB
testcase_19 AC 39 ms
52,480 KB
testcase_20 AC 699 ms
122,620 KB
testcase_21 AC 54 ms
62,720 KB
testcase_22 AC 39 ms
52,352 KB
testcase_23 AC 55 ms
64,128 KB
testcase_24 AC 38 ms
52,224 KB
testcase_25 TLE -
testcase_26 AC 41 ms
57,600 KB
testcase_27 AC 377 ms
117,060 KB
testcase_28 AC 45 ms
59,776 KB
testcase_29 AC 46 ms
59,904 KB
testcase_30 AC 39 ms
51,968 KB
testcase_31 AC 48 ms
61,184 KB
testcase_32 AC 38 ms
51,712 KB
testcase_33 AC 42 ms
52,224 KB
testcase_34 AC 38 ms
52,352 KB
testcase_35 AC 38 ms
51,584 KB
testcase_36 AC 331 ms
116,340 KB
testcase_37 AC 153 ms
95,128 KB
testcase_38 AC 120 ms
82,176 KB
testcase_39 AC 38 ms
51,968 KB
testcase_40 AC 118 ms
82,176 KB
testcase_41 AC 150 ms
95,360 KB
testcase_42 AC 270 ms
112,732 KB
testcase_43 AC 424 ms
122,308 KB
testcase_44 AC 824 ms
153,720 KB
testcase_45 AC 1,342 ms
247,828 KB
testcase_46 AC 39 ms
52,096 KB
testcase_47 AC 39 ms
52,096 KB
testcase_48 AC 56 ms
63,616 KB
testcase_49 AC 156 ms
95,112 KB
testcase_50 AC 38 ms
52,096 KB
testcase_51 AC 53 ms
63,616 KB
testcase_52 AC 150 ms
83,968 KB
testcase_53 AC 60 ms
66,432 KB
testcase_54 AC 61 ms
66,944 KB
testcase_55 AC 80 ms
72,832 KB
testcase_56 AC 69 ms
71,936 KB
testcase_57 AC 375 ms
118,312 KB
testcase_58 AC 70 ms
72,064 KB
testcase_59 AC 82 ms
73,080 KB
testcase_60 AC 47 ms
60,416 KB
testcase_61 AC 70 ms
72,192 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()

S = []
# 🐜本 p.144
k = N // 2
comb = (1 << k) - 1
while comb < (1 << N):
  r = 0
  for j in range(N):
    if (comb >> j) & 1:
      r += R[j]
  S.append(r)
  x = comb & -comb
  y = comb + x
  comb = (((comb & ~y) // x) >> 1) | y

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