結果

問題 No.750 Frac #1
ユーザー バカらっくバカらっく
提出日時 2022-02-14 10:32:05
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 310 ms / 1,000 ms
コード長 460 bytes
コンパイル時間 9,730 ms
コンパイル使用メモリ 427,764 KB
実行使用メモリ 55,492 KB
最終ジャッジ日時 2024-06-29 06:08:22
合計ジャッジ時間 21,568 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 287 ms
55,212 KB
testcase_01 AC 295 ms
55,292 KB
testcase_02 AC 308 ms
55,224 KB
testcase_03 AC 295 ms
55,316 KB
testcase_04 AC 291 ms
55,172 KB
testcase_05 AC 299 ms
55,404 KB
testcase_06 AC 298 ms
55,392 KB
testcase_07 AC 289 ms
55,192 KB
testcase_08 AC 284 ms
52,080 KB
testcase_09 AC 310 ms
55,300 KB
testcase_10 AC 292 ms
55,392 KB
testcase_11 AC 292 ms
55,420 KB
testcase_12 AC 304 ms
55,412 KB
testcase_13 AC 290 ms
55,056 KB
testcase_14 AC 286 ms
55,420 KB
testcase_15 AC 280 ms
52,100 KB
testcase_16 AC 292 ms
55,424 KB
testcase_17 AC 298 ms
55,344 KB
testcase_18 AC 295 ms
55,152 KB
testcase_19 AC 292 ms
55,472 KB
testcase_20 AC 282 ms
51,972 KB
testcase_21 AC 297 ms
55,476 KB
testcase_22 AC 291 ms
55,480 KB
testcase_23 AC 293 ms
55,360 KB
testcase_24 AC 291 ms
55,296 KB
testcase_25 AC 297 ms
55,452 KB
testcase_26 AC 291 ms
55,492 KB
testcase_27 AC 290 ms
55,492 KB
testcase_28 AC 276 ms
51,908 KB
testcase_29 AC 283 ms
55,492 KB
testcase_30 AC 293 ms
55,224 KB
testcase_31 AC 289 ms
55,424 KB
testcase_32 AC 291 ms
55,308 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:1:10: warning: parameter 'args' is never used
fun main(args: Array<String>) {
         ^

ソースコード

diff #

fun main(args: Array<String>) {
    val n = readLine()!!.toInt()
    val num = (1..n).map { readLine()!!.split(" ").map { it.toInt() }.let { Num(it[0], it[1]) } }.sortedDescending()
    num.forEach { println("${it.a} ${it.b}") }
}

class Num(val a:Int, val b:Int):Comparable<Num> {
    override fun compareTo(other: Num): Int {
        if(b == other.b) {
            return a.compareTo(other.a)
        }
        return (a*other.b).compareTo(other.a*b)
    }
}
0