結果

問題 No.750 Frac #1
ユーザー fal_rndfal_rnd
提出日時 2019-02-07 23:46:06
言語 Scala(Beta)
(3.4.0)
結果
AC  
実行時間 972 ms / 1,000 ms
コード長 269 bytes
コンパイル時間 9,247 ms
コンパイル使用メモリ 265,688 KB
実行使用メモリ 65,524 KB
最終ジャッジ日時 2024-07-01 11:28:29
合計ジャッジ時間 42,657 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 956 ms
65,324 KB
testcase_01 AC 949 ms
65,336 KB
testcase_02 AC 950 ms
65,096 KB
testcase_03 AC 955 ms
65,272 KB
testcase_04 AC 972 ms
65,400 KB
testcase_05 AC 972 ms
65,216 KB
testcase_06 AC 950 ms
65,388 KB
testcase_07 AC 949 ms
65,228 KB
testcase_08 AC 949 ms
65,396 KB
testcase_09 AC 954 ms
65,348 KB
testcase_10 AC 944 ms
65,140 KB
testcase_11 AC 959 ms
65,288 KB
testcase_12 AC 959 ms
65,300 KB
testcase_13 AC 967 ms
65,248 KB
testcase_14 AC 963 ms
65,248 KB
testcase_15 AC 948 ms
65,264 KB
testcase_16 AC 951 ms
65,524 KB
testcase_17 AC 946 ms
65,348 KB
testcase_18 AC 948 ms
65,336 KB
testcase_19 AC 944 ms
65,360 KB
testcase_20 AC 951 ms
65,172 KB
testcase_21 AC 951 ms
65,356 KB
testcase_22 AC 959 ms
65,476 KB
testcase_23 AC 945 ms
65,296 KB
testcase_24 AC 942 ms
65,456 KB
testcase_25 AC 945 ms
65,112 KB
testcase_26 AC 949 ms
65,208 KB
testcase_27 AC 949 ms
65,432 KB
testcase_28 AC 935 ms
65,232 KB
testcase_29 AC 943 ms
65,232 KB
testcase_30 AC 946 ms
65,348 KB
testcase_31 AC 943 ms
65,212 KB
testcase_32 AC 941 ms
65,388 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

case class F(c:Int,m:Int){
	override def toString:String = s"$c $m";
}

object Main{
	val s = new java.util.Scanner(System.in)
	def main(args:Array[String]):Unit ={
		Array.fill(s.nextInt)(new F(s.nextInt,s.nextInt)).sortBy(o => o.c * -1.0 / o.m).foreach(println);
	}
}
0