結果

問題 No.2918 Divide Applicants Fairly
ユーザー PNJPNJ
提出日時 2024-10-07 16:00:36
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 857 bytes
コンパイル時間 404 ms
コンパイル使用メモリ 82,260 KB
実行使用メモリ 347,640 KB
最終ジャッジ日時 2024-10-07 16:02:15
合計ジャッジ時間 84,529 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 AC 1,332 ms
345,648 KB
testcase_04 AC 1,307 ms
345,772 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 1,299 ms
345,524 KB
testcase_10 AC 1,315 ms
345,844 KB
testcase_11 AC 1,334 ms
345,648 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 1,276 ms
345,516 KB
testcase_16 AC 1,327 ms
346,032 KB
testcase_17 AC 1,295 ms
346,028 KB
testcase_18 AC 1,286 ms
345,396 KB
testcase_19 WA -
testcase_20 AC 1,295 ms
345,896 KB
testcase_21 AC 1,270 ms
345,776 KB
testcase_22 WA -
testcase_23 AC 1,282 ms
346,164 KB
testcase_24 AC 1,287 ms
345,768 KB
testcase_25 AC 1,279 ms
338,980 KB
testcase_26 WA -
testcase_27 AC 1,324 ms
346,152 KB
testcase_28 WA -
testcase_29 WA -
testcase_30 AC 1,280 ms
346,032 KB
testcase_31 WA -
testcase_32 AC 1,285 ms
345,516 KB
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
testcase_36 WA -
testcase_37 WA -
testcase_38 WA -
testcase_39 AC 1,294 ms
345,652 KB
testcase_40 AC 1,285 ms
345,516 KB
testcase_41 AC 1,287 ms
345,392 KB
testcase_42 AC 1,284 ms
345,648 KB
testcase_43 AC 1,298 ms
345,516 KB
testcase_44 AC 1,294 ms
345,512 KB
testcase_45 AC 1,429 ms
339,228 KB
testcase_46 AC 1,292 ms
346,160 KB
testcase_47 WA -
testcase_48 WA -
testcase_49 WA -
testcase_50 WA -
testcase_51 WA -
testcase_52 AC 1,300 ms
345,904 KB
testcase_53 AC 1,299 ms
345,520 KB
testcase_54 AC 1,308 ms
345,516 KB
testcase_55 WA -
testcase_56 WA -
testcase_57 AC 1,306 ms
345,768 KB
testcase_58 WA -
testcase_59 WA -
testcase_60 AC 1,295 ms
346,032 KB
testcase_61 AC 1,324 ms
346,028 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()))
N = 25
R = [800000] * N

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

dp = [[] for n in range(N + 1)]
stack = [(0,0,-1)]
while len(stack):
  r,c,i = stack.pop()
  dp[c].append(r)
  if (c + 1) * 2 > N:
    continue
  for j in range(i + 1,N):
    stack.append((r + R[j],c + 1,j))

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