結果

問題 No.2918 Divide Applicants Fairly
ユーザー PNJPNJ
提出日時 2024-10-07 16:32:53
言語 PyPy3
(7.3.15)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 333 bytes
コンパイル時間 342 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 253,800 KB
最終ジャッジ日時 2024-11-08 20:35:49
合計ジャッジ時間 13,102 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
52,224 KB
testcase_01 AC 43 ms
52,224 KB
testcase_02 AC 43 ms
52,096 KB
testcase_03 AC 42 ms
52,096 KB
testcase_04 AC 42 ms
52,224 KB
testcase_05 AC 42 ms
52,096 KB
testcase_06 AC 52 ms
58,112 KB
testcase_07 AC 43 ms
51,840 KB
testcase_08 AC 42 ms
52,096 KB
testcase_09 AC 63 ms
65,152 KB
testcase_10 AC 42 ms
52,224 KB
testcase_11 AC 1,021 ms
248,432 KB
testcase_12 AC 58 ms
62,464 KB
testcase_13 AC 49 ms
58,752 KB
testcase_14 AC 48 ms
58,240 KB
testcase_15 AC 44 ms
51,968 KB
testcase_16 AC 44 ms
51,968 KB
testcase_17 AC 56 ms
62,464 KB
testcase_18 AC 1,013 ms
248,424 KB
testcase_19 AC 42 ms
52,224 KB
testcase_20 AC 518 ms
140,048 KB
testcase_21 AC 56 ms
62,080 KB
testcase_22 AC 43 ms
52,096 KB
testcase_23 AC 64 ms
65,280 KB
testcase_24 AC 46 ms
51,712 KB
testcase_25 TLE -
testcase_26 AC 44 ms
52,096 KB
testcase_27 AC 297 ms
103,896 KB
testcase_28 AC 47 ms
58,496 KB
testcase_29 AC 49 ms
58,880 KB
testcase_30 AC 42 ms
51,968 KB
testcase_31 AC 49 ms
59,776 KB
testcase_32 AC 45 ms
51,840 KB
testcase_33 AC 43 ms
52,224 KB
testcase_34 AC 44 ms
52,224 KB
testcase_35 AC 43 ms
52,352 KB
testcase_36 AC 259 ms
103,896 KB
testcase_37 AC 186 ms
89,292 KB
testcase_38 AC 127 ms
84,044 KB
testcase_39 AC 42 ms
51,840 KB
testcase_40 AC 104 ms
82,760 KB
testcase_41 AC 144 ms
88,140 KB
testcase_42 AC 176 ms
100,056 KB
testcase_43 AC 280 ms
131,208 KB
testcase_44 AC 499 ms
228,464 KB
testcase_45 AC 917 ms
253,676 KB
testcase_46 AC 42 ms
52,224 KB
testcase_47 AC 42 ms
52,096 KB
testcase_48 AC 61 ms
64,896 KB
testcase_49 AC 188 ms
88,904 KB
testcase_50 AC 43 ms
52,096 KB
testcase_51 AC 61 ms
64,896 KB
testcase_52 AC 137 ms
83,536 KB
testcase_53 AC 70 ms
70,016 KB
testcase_54 AC 66 ms
69,760 KB
testcase_55 AC 84 ms
79,488 KB
testcase_56 AC 88 ms
79,488 KB
testcase_57 AC 300 ms
103,516 KB
testcase_58 AC 84 ms
79,872 KB
testcase_59 AC 84 ms
79,616 KB
testcase_60 AC 49 ms
58,752 KB
testcase_61 AC 83 ms
79,232 KB
testcase_62 AC 57 ms
62,208 KB
testcase_63 AC 57 ms
62,336 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import itertools

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

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

S = []
P = itertools.combinations([i for i in range(N)],N // 2)
for p in P:
  r = 0
  for j in p:
    r += R[j]
  S.append(r)

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