結果

問題 No.716 距離
ユーザー Mcpu3Mcpu3
提出日時 2018-07-28 10:04:59
言語 Java21
(openjdk 21)
結果
AC  
実行時間 185 ms / 2,000 ms
コード長 309 bytes
コンパイル時間 2,014 ms
コンパイル使用メモリ 76,752 KB
実行使用メモリ 44,824 KB
最終ジャッジ日時 2024-07-05 18:17:05
合計ジャッジ時間 9,480 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 177 ms
43,300 KB
testcase_01 AC 183 ms
43,676 KB
testcase_02 AC 179 ms
43,128 KB
testcase_03 AC 185 ms
44,824 KB
testcase_04 AC 182 ms
43,036 KB
testcase_05 AC 182 ms
44,756 KB
testcase_06 AC 182 ms
43,016 KB
testcase_07 AC 121 ms
41,764 KB
testcase_08 AC 127 ms
42,588 KB
testcase_09 AC 135 ms
42,096 KB
testcase_10 AC 174 ms
42,368 KB
testcase_11 AC 158 ms
41,784 KB
testcase_12 AC 177 ms
42,344 KB
testcase_13 AC 175 ms
42,688 KB
testcase_14 AC 135 ms
41,984 KB
testcase_15 AC 179 ms
44,340 KB
testcase_16 AC 173 ms
42,296 KB
testcase_17 AC 180 ms
42,964 KB
testcase_18 AC 132 ms
41,440 KB
testcase_19 AC 155 ms
42,788 KB
testcase_20 AC 134 ms
41,836 KB
testcase_21 AC 144 ms
42,132 KB
testcase_22 AC 146 ms
41,692 KB
testcase_23 AC 136 ms
41,884 KB
testcase_24 AC 174 ms
42,660 KB
testcase_25 AC 161 ms
42,372 KB
testcase_26 AC 172 ms
43,408 KB
testcase_27 AC 172 ms
42,388 KB
testcase_28 AC 143 ms
42,024 KB
testcase_29 AC 171 ms
42,816 KB
testcase_30 AC 183 ms
43,108 KB
testcase_31 AC 179 ms
42,676 KB
testcase_32 AC 174 ms
42,432 KB
testcase_33 AC 171 ms
41,824 KB
testcase_34 AC 169 ms
42,724 KB
testcase_35 AC 136 ms
41,984 KB
testcase_36 AC 148 ms
42,180 KB
testcase_37 AC 133 ms
42,292 KB
testcase_38 AC 158 ms
42,432 KB
testcase_39 AC 164 ms
42,684 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

class Main{
	public static void main(String[] args) {
		Scanner stdIn=new Scanner(System.in);
		int n=stdIn.nextInt(),a=0,b=stdIn.nextInt(),t=b,m=200000,i;
		for(i=1;i<n;i++) {
			a=stdIn.nextInt();
			if(m>a-t) m=a-t;
			t=a;
		}
		System.out.print(m+"\n"+(a-b));
	}
}
0