結果

問題 No.21 平均の差
ユーザー 0x6d610x6d61
提出日時 2017-08-02 15:03:04
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 319 bytes
コンパイル時間 165 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 10,880 KB
最終ジャッジ日時 2024-04-19 13:31:08
合計ジャッジ時間 939 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 RE -
testcase_02 WA -
testcase_03 RE -
testcase_04 RE -
testcase_05 RE -
testcase_06 RE -
testcase_07 WA -
testcase_08 RE -
testcase_09 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

def group(N,K,N2):
    if N % K == 0:
        return [N2[i:i+(N/K)] for i in range(0,len(N2),(N/K))]
    else:
        return [N2[i:i+(N%K)] for i in range(0,len(N2),(N%K))]

N = int(input())
K = int(input())
N2 = [int(input()) for i in range(N)]
r = [sum(i)/len(i) for i in group(N,K,N2)]
r.sort()
print(r[0] - r[-1])
0