結果
問題 | No.14 最小公倍数ソート |
ユーザー | warashi |
提出日時 | 2015-11-02 21:01:11 |
言語 | Go (1.22.1) |
結果 |
TLE
|
実行時間 | - |
コード長 | 832 bytes |
コンパイル時間 | 12,704 ms |
コンパイル使用メモリ | 227,128 KB |
実行使用メモリ | 10,496 KB |
最終ジャッジ日時 | 2024-10-10 20:07:48 |
合計ジャッジ時間 | 17,773 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,820 KB |
testcase_01 | AC | 1 ms
5,248 KB |
testcase_02 | AC | 1 ms
5,248 KB |
testcase_03 | AC | 97 ms
6,016 KB |
testcase_04 | TLE | - |
testcase_05 | -- | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
ソースコード
package main import ( "fmt" ) var key int func main() { var N int fmt.Scan(&N) a := make([]int, N) for i := 0; i < N; i++ { fmt.Scan(&a[i]) } if len(a) > 1 { lcmSort(a[0], a[1:]) } ans := fmt.Sprintln(a) fmt.Println(ans[1 : len(ans)-2]) } func lcmSort(k int, a []int) { if len(a) == 1 { return } b := make([]int, len(a)) for i := range a { b[i] = lcm(k, a[i]) } for i := range a { if i == 0 { continue } if less(a, b, i, 0) { a[0], a[i] = a[i], a[0] b[0], b[i] = b[i], b[0] } } lcmSort(a[0], a[1:]) } func less(a, b []int, i, j int) bool { if b[i] == b[j] { return a[i] < a[j] } return b[i] < b[j] } func lcm(a, b int) int { g := gcd(a, b) return (a / g) * (b / g) * g } func gcd(a, b int) int { if a > b { a, b = b, a } if a == 0 { return b } return gcd(b%a, a) }