結果
問題 | No.21 平均の差 |
ユーザー | 0x6d61 |
提出日時 | 2017-08-02 15:03:04 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 319 bytes |
コンパイル時間 | 194 ms |
コンパイル使用メモリ | 12,544 KB |
実行使用メモリ | 10,880 KB |
最終ジャッジ日時 | 2024-10-11 05:54:50 |
合計ジャッジ時間 | 1,502 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
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 | - |
ソースコード
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])