結果

問題 No.21 平均の差
ユーザー omicoder2017omicoder2017
提出日時 2017-10-25 10:18:27
言語 Python2
(2.7.18)
結果
WA  
実行時間 -
コード長 276 bytes
コンパイル時間 104 ms
コンパイル使用メモリ 7,040 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-05-01 14:04:17
合計ジャッジ時間 752 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

N = int(raw_input())
K = int(raw_input())

n = []

for i in range(N):
    n.append(int(raw_input()))

n.sort()
grp=[]
for i in range(K):
    grp.append(0)


grp[0] = n[0]

for i in range(0,N-2):
    grp[i%K]=n[i]

grp[K-1]=n[N-1]

    
ans = str(grp[K-1] - grp[0])

print ans
0