結果

問題 No.716 距離
ユーザー fal_rndfal_rnd
提出日時 2019-02-08 20:13:15
言語 Scala(Beta)
(3.4.0)
結果
AC  
実行時間 1,192 ms / 2,000 ms
コード長 231 bytes
コンパイル時間 14,778 ms
コンパイル使用メモリ 273,112 KB
実行使用メモリ 64,732 KB
最終ジャッジ日時 2024-05-01 21:25:35
合計ジャッジ時間 62,715 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,137 ms
64,456 KB
testcase_01 AC 1,140 ms
64,704 KB
testcase_02 AC 1,192 ms
64,556 KB
testcase_03 AC 1,145 ms
64,728 KB
testcase_04 AC 1,139 ms
64,660 KB
testcase_05 AC 1,162 ms
64,548 KB
testcase_06 AC 1,160 ms
64,464 KB
testcase_07 AC 1,023 ms
64,016 KB
testcase_08 AC 1,029 ms
64,128 KB
testcase_09 AC 999 ms
63,996 KB
testcase_10 AC 1,140 ms
64,688 KB
testcase_11 AC 1,115 ms
64,336 KB
testcase_12 AC 1,186 ms
64,600 KB
testcase_13 AC 1,145 ms
64,344 KB
testcase_14 AC 1,060 ms
64,120 KB
testcase_15 AC 1,187 ms
64,308 KB
testcase_16 AC 1,142 ms
64,220 KB
testcase_17 AC 1,185 ms
64,336 KB
testcase_18 AC 1,052 ms
64,116 KB
testcase_19 AC 1,129 ms
64,244 KB
testcase_20 AC 1,059 ms
64,196 KB
testcase_21 AC 1,085 ms
64,316 KB
testcase_22 AC 1,093 ms
64,244 KB
testcase_23 AC 1,093 ms
64,228 KB
testcase_24 AC 1,163 ms
64,732 KB
testcase_25 AC 1,130 ms
64,448 KB
testcase_26 AC 1,121 ms
64,304 KB
testcase_27 AC 1,160 ms
64,116 KB
testcase_28 AC 1,076 ms
64,100 KB
testcase_29 AC 1,132 ms
64,252 KB
testcase_30 AC 1,117 ms
64,548 KB
testcase_31 AC 1,150 ms
64,552 KB
testcase_32 AC 1,141 ms
64,376 KB
testcase_33 AC 1,162 ms
64,424 KB
testcase_34 AC 1,143 ms
64,388 KB
testcase_35 AC 1,063 ms
64,104 KB
testcase_36 AC 1,096 ms
64,312 KB
testcase_37 AC 1,060 ms
64,016 KB
testcase_38 AC 1,099 ms
64,136 KB
testcase_39 AC 1,133 ms
64,332 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

object Main{
	def main(args:Array[String])={
		val s=new java.util.Scanner(System.in);
		val a=Array.fill(s.nextInt)(s.nextInt).sorted;
		println(a.zip(a.view.drop(1)).map(o=>Math.abs(o._1-o._2)).min)
		println(a.last-a.head);
	}
}
0