結果

問題 No.750 Frac #1
ユーザー neko_the_shadowneko_the_shadow
提出日時 2018-12-02 16:55:21
言語 Scala(Beta)
(3.4.0)
結果
AC  
実行時間 941 ms / 1,000 ms
コード長 273 bytes
コンパイル時間 9,328 ms
コンパイル使用メモリ 272,936 KB
実行使用メモリ 63,764 KB
最終ジャッジ日時 2024-07-01 05:25:11
合計ジャッジ時間 41,828 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 935 ms
63,396 KB
testcase_01 AC 922 ms
63,708 KB
testcase_02 AC 923 ms
63,520 KB
testcase_03 AC 919 ms
63,700 KB
testcase_04 AC 941 ms
63,580 KB
testcase_05 AC 938 ms
63,732 KB
testcase_06 AC 938 ms
63,648 KB
testcase_07 AC 927 ms
63,708 KB
testcase_08 AC 893 ms
63,000 KB
testcase_09 AC 925 ms
63,600 KB
testcase_10 AC 931 ms
63,384 KB
testcase_11 AC 929 ms
63,520 KB
testcase_12 AC 923 ms
63,620 KB
testcase_13 AC 927 ms
63,576 KB
testcase_14 AC 935 ms
63,380 KB
testcase_15 AC 897 ms
63,060 KB
testcase_16 AC 924 ms
63,548 KB
testcase_17 AC 926 ms
63,612 KB
testcase_18 AC 922 ms
63,624 KB
testcase_19 AC 933 ms
63,520 KB
testcase_20 AC 923 ms
63,152 KB
testcase_21 AC 925 ms
63,648 KB
testcase_22 AC 924 ms
63,700 KB
testcase_23 AC 922 ms
63,660 KB
testcase_24 AC 918 ms
63,452 KB
testcase_25 AC 918 ms
63,576 KB
testcase_26 AC 919 ms
63,764 KB
testcase_27 AC 928 ms
63,608 KB
testcase_28 AC 910 ms
62,992 KB
testcase_29 AC 925 ms
63,596 KB
testcase_30 AC 921 ms
63,676 KB
testcase_31 AC 925 ms
63,564 KB
testcase_32 AC 935 ms
63,580 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

object Q750 {
  def main(args: Array[String]) = {
    val n = io.StdIn.readLine().toInt
    Range(0, n).map(_ => io.StdIn.readLine()).sortBy(line => {
      val tokens = line.split(' ').map(_.toDouble).toSeq
      tokens(0) / tokens(1)
    }).reverse.foreach(println)
  }
}
0