結果

問題 No.406 鴨等間隔の法則
ユーザー RinRin
提出日時 2016-09-09 10:28:11
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 782 bytes
コンパイル時間 3,707 ms
コンパイル使用メモリ 77,512 KB
実行使用メモリ 50,540 KB
最終ジャッジ日時 2024-11-07 05:50:30
合計ジャッジ時間 18,983 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 448 ms
48,032 KB
testcase_01 AC 125 ms
41,308 KB
testcase_02 AC 127 ms
41,228 KB
testcase_03 AC 129 ms
41,320 KB
testcase_04 AC 622 ms
48,564 KB
testcase_05 AC 417 ms
48,248 KB
testcase_06 AC 426 ms
48,300 KB
testcase_07 AC 464 ms
47,984 KB
testcase_08 AC 584 ms
48,336 KB
testcase_09 AC 530 ms
47,996 KB
testcase_10 AC 453 ms
48,232 KB
testcase_11 AC 576 ms
48,520 KB
testcase_12 AC 537 ms
48,324 KB
testcase_13 AC 527 ms
48,576 KB
testcase_14 WA -
testcase_15 AC 231 ms
45,988 KB
testcase_16 AC 246 ms
45,984 KB
testcase_17 AC 212 ms
44,548 KB
testcase_18 AC 249 ms
46,268 KB
testcase_19 WA -
testcase_20 WA -
testcase_21 AC 296 ms
47,720 KB
testcase_22 WA -
testcase_23 AC 498 ms
48,140 KB
testcase_24 WA -
testcase_25 AC 642 ms
48,580 KB
testcase_26 WA -
testcase_27 AC 572 ms
48,320 KB
testcase_28 AC 564 ms
48,204 KB
testcase_29 WA -
testcase_30 WA -
testcase_31 AC 606 ms
48,664 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class b {
	public static void main(String args[]){
		Scanner sc = new Scanner(System.in);
		int N = sc.nextInt();
		int foo[] = new int[N];
		for(int i = 0; i < N; i++)
			foo[i] = sc.nextInt();
		int min = 114514810;
		int min2th = 19194545;
		for(int i = 1; i < N; i++){
			if(foo[i] < min){
				min2th = min;
				min = foo[i];
			}else if(foo[i] < min2th){
				min2th = foo[i];
			}
			if(foo[i] < foo[i - 1]){
				int tmp = foo[i];
				foo[i] = foo[i - 1];
				foo[i - 1] = tmp;
			}else if(foo[i] == foo[i - 1]){
				System.out.println("NO");
				return;
			}
		}
		int bar = min2th - min;
		for(int i = 0; i < N - 1; i++){
			if(foo[i] + bar != foo[i + 1]){
				System.out.println("NO");
				return;
			}
		}
		System.out.println("YES");
	}
}
0