結果

問題 No.750 Frac #1
ユーザー toshiro_yanagitoshiro_yanagi
提出日時 2018-11-10 16:35:31
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 344 ms / 1,000 ms
コード長 443 bytes
コンパイル時間 10,176 ms
コンパイル使用メモリ 442,492 KB
実行使用メモリ 61,120 KB
最終ジャッジ日時 2024-11-20 17:07:05
合計ジャッジ時間 22,143 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 330 ms
60,992 KB
testcase_01 AC 333 ms
61,048 KB
testcase_02 AC 323 ms
60,944 KB
testcase_03 AC 318 ms
60,948 KB
testcase_04 AC 337 ms
60,956 KB
testcase_05 AC 316 ms
61,008 KB
testcase_06 AC 331 ms
61,048 KB
testcase_07 AC 329 ms
60,996 KB
testcase_08 AC 314 ms
58,688 KB
testcase_09 AC 344 ms
61,072 KB
testcase_10 AC 324 ms
61,064 KB
testcase_11 AC 322 ms
61,008 KB
testcase_12 AC 323 ms
60,960 KB
testcase_13 AC 318 ms
60,936 KB
testcase_14 AC 327 ms
61,040 KB
testcase_15 AC 307 ms
58,784 KB
testcase_16 AC 318 ms
61,120 KB
testcase_17 AC 334 ms
61,092 KB
testcase_18 AC 327 ms
60,916 KB
testcase_19 AC 331 ms
60,968 KB
testcase_20 AC 323 ms
58,788 KB
testcase_21 AC 318 ms
61,088 KB
testcase_22 AC 334 ms
61,008 KB
testcase_23 AC 339 ms
61,056 KB
testcase_24 AC 313 ms
60,988 KB
testcase_25 AC 318 ms
60,960 KB
testcase_26 AC 319 ms
61,052 KB
testcase_27 AC 323 ms
60,996 KB
testcase_28 AC 315 ms
58,728 KB
testcase_29 AC 321 ms
61,084 KB
testcase_30 AC 340 ms
61,068 KB
testcase_31 AC 314 ms
61,004 KB
testcase_32 AC 320 ms
61,032 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:9:10: warning: parameter 'args' is never used
fun main(args: Array<String>) {
         ^

ソースコード

diff #

import java.util.*

val sc = Scanner(System.`in`)
val n = sc.nextInt()
val A = Array(n) { 0 }
val B = Array(n) { 0 }
val C = Array(n) { arrayOf(0, 0) }

fun main(args: Array<String>) {
    for (i in 0 until n) {
        A[i] = sc.nextInt()
        B[i] = sc.nextInt()
        C[i] = arrayOf(A[i], B[i])
    }
    C.sortWith(compareBy { it[0].toDouble() / it[1] })
    C.reverse()

    for (v in C) {
        println("${v[0]} ${v[1]}")
    }
}
0