結果
問題 | No.21 平均の差 |
ユーザー | brthyyjp |
提出日時 | 2020-11-16 10:29:34 |
言語 | PyPy3 (7.3.15) |
結果 |
TLE
|
実行時間 | - |
コード長 | 495 bytes |
コンパイル時間 | 193 ms |
コンパイル使用メモリ | 81,792 KB |
実行使用メモリ | 84,352 KB |
最終ジャッジ日時 | 2024-07-23 01:27:10 |
合計ジャッジ時間 | 7,537 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 48 ms
60,288 KB |
testcase_01 | AC | 188 ms
76,652 KB |
testcase_02 | AC | 398 ms
76,784 KB |
testcase_03 | AC | 39 ms
52,224 KB |
testcase_04 | TLE | - |
testcase_05 | -- | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
ソースコード
n = int(input()) k = int(input()) A = [int(input()) for _ in range(n)] import itertools, math ans = -10**18 for p in itertools.product(range(k), repeat=n): X = [[] for _ in range(k)] for i in range(n): X[p[i]].append(A[i]) M = -10**18 m = 10**18 flag = True for x in X: if not x: flag = False break M = max(M, sum(x)/len(x)) m = min(M, sum(x)/len(x)) if flag: ans = max(ans, M-m) print(math.ceil(ans))