結果
問題 | No.21 平均の差 |
ユーザー | zakuro9715 |
提出日時 | 2015-10-08 00:14:33 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 490 bytes |
コンパイル時間 | 314 ms |
コンパイル使用メモリ | 82,048 KB |
実行使用メモリ | 52,864 KB |
最終ジャッジ日時 | 2024-07-20 02:00:31 |
合計ジャッジ時間 | 1,152 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
ソースコード
from itertools import combinations N, K = int(input()), int(input()) s = list(sorted([int(input()) for i in range(N)])) ans = 0 for x in combinations(range(1, N), K - 1): mx, mn = 0, 10000000000 x = [0] + list(x) + [N] for k in range(1, K + 1): print(x[k - 1], x[k]) x1, x2 = x[k - 1], x[k] sss = sum(s[x1:x2]) / (x2 - x1) mx = max(sss, mx) mn = min(sss, mn) ans = max(ans, mx - mn) print(int(ans) + (1 if int(ans) != ans else 0))