結果

問題 No.406 鴨等間隔の法則
ユーザー cande398cande398
提出日時 2017-10-08 21:07:01
言語 Java21
(openjdk 21)
結果
AC  
実行時間 676 ms / 2,000 ms
コード長 497 bytes
コンパイル時間 2,207 ms
コンパイル使用メモリ 75,764 KB
実行使用メモリ 60,348 KB
最終ジャッジ日時 2024-07-07 12:13:34
合計ジャッジ時間 18,250 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 464 ms
59,672 KB
testcase_01 AC 126 ms
54,052 KB
testcase_02 AC 124 ms
53,884 KB
testcase_03 AC 127 ms
54,200 KB
testcase_04 AC 676 ms
60,348 KB
testcase_05 AC 457 ms
59,432 KB
testcase_06 AC 480 ms
48,664 KB
testcase_07 AC 456 ms
48,400 KB
testcase_08 AC 664 ms
48,980 KB
testcase_09 AC 659 ms
48,588 KB
testcase_10 AC 518 ms
48,376 KB
testcase_11 AC 642 ms
48,532 KB
testcase_12 AC 525 ms
48,484 KB
testcase_13 AC 514 ms
48,552 KB
testcase_14 AC 654 ms
48,876 KB
testcase_15 AC 239 ms
46,276 KB
testcase_16 AC 241 ms
46,852 KB
testcase_17 AC 212 ms
45,108 KB
testcase_18 AC 247 ms
46,120 KB
testcase_19 AC 270 ms
47,476 KB
testcase_20 AC 293 ms
47,912 KB
testcase_21 AC 285 ms
47,908 KB
testcase_22 AC 359 ms
47,968 KB
testcase_23 AC 514 ms
48,708 KB
testcase_24 AC 562 ms
48,500 KB
testcase_25 AC 634 ms
48,644 KB
testcase_26 AC 622 ms
50,632 KB
testcase_27 AC 582 ms
48,496 KB
testcase_28 AC 567 ms
48,648 KB
testcase_29 AC 619 ms
50,536 KB
testcase_30 AC 584 ms
48,712 KB
testcase_31 AC 631 ms
48,544 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main{
  public static void main(String[] args){
    int i, diff;
    Scanner sc = new Scanner(System.in);
    int num = sc.nextInt();
    int[] array = new int[num];
    for(i=0;i<num;i++){
      array[i] = sc.nextInt();
    }
    Arrays.sort(array);
    diff = array[1] - array[0];
    for(i=1;i<num;i++){
      if(diff != array[i] - array[i-1])break;
      if(i==num-1)System.out.println(diff!=0?"YES":"NO");
    }
    if(i!=num)System.out.println("NO");
  }
}
0