結果

問題 No.406 鴨等間隔の法則
ユーザー RinRin
提出日時 2016-09-09 10:29:17
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 783 bytes
コンパイル時間 3,664 ms
コンパイル使用メモリ 77,648 KB
実行使用メモリ 48,716 KB
最終ジャッジ日時 2024-11-07 05:53:02
合計ジャッジ時間 19,011 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 457 ms
48,048 KB
testcase_01 AC 127 ms
41,068 KB
testcase_02 AC 113 ms
40,112 KB
testcase_03 AC 131 ms
40,984 KB
testcase_04 AC 614 ms
48,500 KB
testcase_05 AC 433 ms
48,288 KB
testcase_06 AC 469 ms
48,220 KB
testcase_07 AC 459 ms
48,048 KB
testcase_08 AC 620 ms
48,508 KB
testcase_09 AC 630 ms
48,340 KB
testcase_10 AC 468 ms
47,792 KB
testcase_11 AC 597 ms
48,464 KB
testcase_12 AC 506 ms
47,952 KB
testcase_13 AC 478 ms
48,240 KB
testcase_14 WA -
testcase_15 AC 232 ms
45,900 KB
testcase_16 AC 238 ms
45,972 KB
testcase_17 AC 200 ms
44,548 KB
testcase_18 AC 245 ms
45,984 KB
testcase_19 WA -
testcase_20 WA -
testcase_21 AC 284 ms
46,024 KB
testcase_22 WA -
testcase_23 AC 484 ms
48,260 KB
testcase_24 WA -
testcase_25 AC 635 ms
48,716 KB
testcase_26 WA -
testcase_27 AC 562 ms
48,284 KB
testcase_28 AC 557 ms
48,024 KB
testcase_29 WA -
testcase_30 WA -
testcase_31 AC 592 ms
48,700 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 = 364364893;
		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