結果

問題 No.716 距離
ユーザー fal_rndfal_rnd
提出日時 2019-02-08 20:13:15
言語 Scala(Beta)
(3.4.0)
結果
AC  
実行時間 1,083 ms / 2,000 ms
コード長 231 bytes
コンパイル時間 13,284 ms
コンパイル使用メモリ 266,584 KB
実行使用メモリ 66,320 KB
最終ジャッジ日時 2024-11-22 04:09:33
合計ジャッジ時間 56,474 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,062 ms
66,320 KB
testcase_01 AC 1,075 ms
66,204 KB
testcase_02 AC 1,072 ms
65,984 KB
testcase_03 AC 1,068 ms
66,168 KB
testcase_04 AC 1,073 ms
66,220 KB
testcase_05 AC 1,081 ms
66,112 KB
testcase_06 AC 1,083 ms
66,064 KB
testcase_07 AC 1,010 ms
65,492 KB
testcase_08 AC 959 ms
65,576 KB
testcase_09 AC 955 ms
65,580 KB
testcase_10 AC 1,062 ms
65,992 KB
testcase_11 AC 1,018 ms
66,124 KB
testcase_12 AC 1,070 ms
66,016 KB
testcase_13 AC 1,025 ms
65,784 KB
testcase_14 AC 954 ms
65,256 KB
testcase_15 AC 1,072 ms
66,152 KB
testcase_16 AC 1,027 ms
66,068 KB
testcase_17 AC 1,049 ms
66,180 KB
testcase_18 AC 964 ms
65,896 KB
testcase_19 AC 1,031 ms
65,864 KB
testcase_20 AC 939 ms
65,664 KB
testcase_21 AC 950 ms
65,596 KB
testcase_22 AC 976 ms
65,708 KB
testcase_23 AC 950 ms
65,496 KB
testcase_24 AC 1,049 ms
66,076 KB
testcase_25 AC 1,016 ms
65,752 KB
testcase_26 AC 1,018 ms
66,016 KB
testcase_27 AC 1,018 ms
66,048 KB
testcase_28 AC 969 ms
65,732 KB
testcase_29 AC 1,018 ms
65,864 KB
testcase_30 AC 1,019 ms
66,080 KB
testcase_31 AC 1,041 ms
65,980 KB
testcase_32 AC 1,027 ms
66,108 KB
testcase_33 AC 1,028 ms
65,996 KB
testcase_34 AC 1,003 ms
66,000 KB
testcase_35 AC 931 ms
65,508 KB
testcase_36 AC 964 ms
65,648 KB
testcase_37 AC 949 ms
65,716 KB
testcase_38 AC 992 ms
66,084 KB
testcase_39 AC 1,013 ms
65,860 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