結果

問題 No.750 Frac #1
ユーザー fukafukatanifukafukatani
提出日時 2021-06-23 22:51:01
言語 Scala(Beta)
(3.4.0)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 257 bytes
コンパイル時間 11,166 ms
コンパイル使用メモリ 266,496 KB
実行使用メモリ 64,688 KB
最終ジャッジ日時 2024-06-24 23:14:11
合計ジャッジ時間 45,409 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 958 ms
64,688 KB
testcase_01 AC 975 ms
64,312 KB
testcase_02 AC 978 ms
64,372 KB
testcase_03 AC 987 ms
64,564 KB
testcase_04 AC 984 ms
64,568 KB
testcase_05 AC 978 ms
64,296 KB
testcase_06 AC 975 ms
64,408 KB
testcase_07 AC 972 ms
64,648 KB
testcase_08 AC 968 ms
64,528 KB
testcase_09 AC 965 ms
64,256 KB
testcase_10 AC 966 ms
64,612 KB
testcase_11 AC 960 ms
64,456 KB
testcase_12 AC 954 ms
64,608 KB
testcase_13 AC 957 ms
64,576 KB
testcase_14 AC 963 ms
64,236 KB
testcase_15 AC 963 ms
64,324 KB
testcase_16 AC 973 ms
64,380 KB
testcase_17 AC 983 ms
64,448 KB
testcase_18 AC 983 ms
64,176 KB
testcase_19 AC 979 ms
64,568 KB
testcase_20 AC 976 ms
64,220 KB
testcase_21 AC 974 ms
64,164 KB
testcase_22 AC 972 ms
64,576 KB
testcase_23 AC 974 ms
64,560 KB
testcase_24 AC 990 ms
64,436 KB
testcase_25 AC 974 ms
64,512 KB
testcase_26 AC 973 ms
64,536 KB
testcase_27 AC 964 ms
64,528 KB
testcase_28 AC 966 ms
64,356 KB
testcase_29 AC 964 ms
64,356 KB
testcase_30 AC 984 ms
64,360 KB
testcase_31 TLE -
testcase_32 AC 990 ms
64,624 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner

object Main extends App {
  val sc = new Scanner(System.in)
  val n = sc.nextInt
  var s = Array.fill(n)((sc.nextInt, sc.nextInt))
  s.sortWith((o1, o2) => o1._1 * o2._2 > o1._2 * o2._1).foreach(o => println(s"${o._1} ${o._2}"))
}
0