結果

問題 No.406 鴨等間隔の法則
ユーザー takeya_okinotakeya_okino
提出日時 2017-06-19 20:29:53
言語 Java21
(openjdk 21)
結果
AC  
実行時間 629 ms / 2,000 ms
コード長 480 bytes
コンパイル時間 1,801 ms
コンパイル使用メモリ 74,920 KB
実行使用メモリ 61,204 KB
最終ジャッジ日時 2024-07-07 12:07:13
合計ジャッジ時間 16,410 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 455 ms
59,456 KB
testcase_01 AC 103 ms
53,116 KB
testcase_02 AC 115 ms
54,208 KB
testcase_03 AC 115 ms
54,148 KB
testcase_04 AC 544 ms
59,568 KB
testcase_05 AC 405 ms
59,440 KB
testcase_06 AC 428 ms
59,272 KB
testcase_07 AC 432 ms
59,368 KB
testcase_08 AC 535 ms
59,688 KB
testcase_09 AC 629 ms
59,764 KB
testcase_10 AC 439 ms
59,512 KB
testcase_11 AC 536 ms
59,584 KB
testcase_12 AC 483 ms
59,632 KB
testcase_13 AC 454 ms
59,592 KB
testcase_14 AC 586 ms
59,728 KB
testcase_15 AC 205 ms
57,656 KB
testcase_16 AC 228 ms
58,420 KB
testcase_17 AC 188 ms
56,728 KB
testcase_18 AC 224 ms
57,524 KB
testcase_19 AC 234 ms
58,596 KB
testcase_20 AC 271 ms
58,076 KB
testcase_21 AC 278 ms
58,844 KB
testcase_22 AC 318 ms
59,064 KB
testcase_23 AC 475 ms
59,192 KB
testcase_24 AC 449 ms
58,592 KB
testcase_25 AC 619 ms
59,400 KB
testcase_26 AC 534 ms
61,204 KB
testcase_27 AC 496 ms
59,148 KB
testcase_28 AC 449 ms
59,180 KB
testcase_29 AC 538 ms
59,748 KB
testcase_30 AC 493 ms
59,512 KB
testcase_31 AC 589 ms
59,544 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

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