結果

問題 No.21 平均の差
ユーザー zimphazimpha
提出日時 2017-12-09 02:10:40
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 144 ms / 5,000 ms
コード長 428 bytes
コンパイル時間 765 ms
コンパイル使用メモリ 82,816 KB
実行使用メモリ 77,748 KB
最終ジャッジ日時 2024-11-29 22:52:31
合計ジャッジ時間 1,679 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
51,840 KB
testcase_01 AC 105 ms
76,672 KB
testcase_02 AC 144 ms
77,748 KB
testcase_03 AC 42 ms
51,712 KB
testcase_04 AC 76 ms
70,400 KB
testcase_05 AC 43 ms
51,968 KB
testcase_06 AC 42 ms
51,712 KB
testcase_07 AC 57 ms
61,824 KB
testcase_08 AC 49 ms
58,880 KB
testcase_09 AC 105 ms
76,672 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
k = int(input())
a = [int(input()) for i in range(n)]
group = [[] for i in range(k)]
def search(d, m):
  if d == n:
    if m == k:
      avg = [sum(x) / len(x) for x in group]
      return max(avg) - min(avg)
    else:
      return 0
  ret = 0
  for i in range(min(m + 1, k)):
    group[i].append(a[d])
    ret = max(ret, search(d + 1, max(m, i + 1)))
    group[i].pop(-1)
  return ret

print(int(search(0, 0)))
0