結果
問題 | No.21 平均の差 |
ユーザー | kshiva1126 |
提出日時 | 2019-03-30 18:00:29 |
言語 | Go (1.22.1) |
結果 |
WA
|
実行時間 | - |
コード長 | 729 bytes |
コンパイル時間 | 11,138 ms |
コンパイル使用メモリ | 240,348 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-04-27 16:57:15 |
合計ジャッジ時間 | 11,904 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
6,816 KB |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | AC | 1 ms
6,940 KB |
testcase_06 | AC | 2 ms
6,940 KB |
testcase_07 | AC | 1 ms
6,944 KB |
testcase_08 | AC | 2 ms
6,940 KB |
testcase_09 | AC | 1 ms
6,944 KB |
ソースコード
package main import ( "fmt" "sort" ) func main(){ var n, g int fmt.Scan(&n) fmt.Scan(&g) t := make([]int, n) for i := 0; i < n; i++ { fmt.Scan(&t[i]) } sort.Ints(t) var sp int sp = n / g var max, min, cnt, total, res float64 for k, v := range t { total += float64(v) cnt += 1 if cnt == float64(sp) || k + 1 == len(t) { res = total / cnt if max < res { if min == 0 { min = max } max = res } else if min > res { min = res } total = 0 cnt = 0 } } fmt.Println(int(max - min)) }