結果

問題 No.750 Frac #1
ユーザー kat0rikkat0rik
提出日時 2019-08-07 17:10:07
言語 Go
(1.22.1)
結果
AC  
実行時間 2 ms / 1,000 ms
コード長 759 bytes
コンパイル時間 11,419 ms
コンパイル使用メモリ 215,908 KB
実行使用メモリ 4,384 KB
最終ジャッジ日時 2023-09-25 23:03:05
合計ジャッジ時間 13,030 ms
ジャッジサーバーID
(参考情報)
judge11 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
4,380 KB
testcase_01 AC 1 ms
4,380 KB
testcase_02 AC 2 ms
4,380 KB
testcase_03 AC 2 ms
4,380 KB
testcase_04 AC 1 ms
4,380 KB
testcase_05 AC 1 ms
4,376 KB
testcase_06 AC 1 ms
4,384 KB
testcase_07 AC 2 ms
4,380 KB
testcase_08 AC 1 ms
4,376 KB
testcase_09 AC 2 ms
4,380 KB
testcase_10 AC 1 ms
4,380 KB
testcase_11 AC 2 ms
4,380 KB
testcase_12 AC 2 ms
4,376 KB
testcase_13 AC 1 ms
4,380 KB
testcase_14 AC 1 ms
4,380 KB
testcase_15 AC 2 ms
4,380 KB
testcase_16 AC 1 ms
4,380 KB
testcase_17 AC 1 ms
4,376 KB
testcase_18 AC 1 ms
4,376 KB
testcase_19 AC 2 ms
4,376 KB
testcase_20 AC 2 ms
4,376 KB
testcase_21 AC 1 ms
4,380 KB
testcase_22 AC 1 ms
4,376 KB
testcase_23 AC 1 ms
4,380 KB
testcase_24 AC 1 ms
4,376 KB
testcase_25 AC 2 ms
4,380 KB
testcase_26 AC 2 ms
4,376 KB
testcase_27 AC 1 ms
4,380 KB
testcase_28 AC 2 ms
4,376 KB
testcase_29 AC 1 ms
4,376 KB
testcase_30 AC 1 ms
4,376 KB
testcase_31 AC 1 ms
4,380 KB
testcase_32 AC 2 ms
4,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package main

import (
	"fmt"
	"sort"
)

func gcd(a, b int) int {
	if b == 0 {
		return a
	}
	return gcd(b, a%b)
}
func lcm(a, b int) int {
	return a / gcd(a, b) * b
}

type rec struct {
	id, a, b, val int
}

type rcs []rec

func (r rcs) Len() int {
	return len(r)
}

func (r rcs) Less(x, y int) bool {
	return r[x].val < r[y].val
}

func (r rcs) Swap(x, y int) {
	r[x], r[y] = r[y], r[x]
}

func main() {
	var n int
	fmt.Scan(&n)

	alcm := 1
	recs := make([]rec, n)
	for i := range recs {
		recs[i].id = i
		fmt.Scan(&recs[i].a)
		fmt.Scan(&recs[i].b)
		alcm = lcm(alcm, recs[i].b)
	}
	for i := range recs {
		recs[i].val = recs[i].a * alcm / recs[i].b
	}

	sort.Sort(sort.Reverse(rcs(recs)))
	for i := range recs {

		fmt.Println(recs[i].a, recs[i].b)
	}
}
0