結果

問題 No.406 鴨等間隔の法則
ユーザー takeya_okinotakeya_okino
提出日時 2017-06-19 20:27:42
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 446 bytes
コンパイル時間 2,416 ms
コンパイル使用メモリ 83,740 KB
実行使用メモリ 61,772 KB
最終ジャッジ日時 2024-11-07 10:35:59
合計ジャッジ時間 19,042 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 492 ms
59,024 KB
testcase_01 AC 133 ms
53,824 KB
testcase_02 AC 131 ms
53,984 KB
testcase_03 WA -
testcase_04 AC 674 ms
59,628 KB
testcase_05 AC 475 ms
59,432 KB
testcase_06 AC 469 ms
59,300 KB
testcase_07 AC 468 ms
59,032 KB
testcase_08 AC 665 ms
59,580 KB
testcase_09 AC 689 ms
59,604 KB
testcase_10 AC 500 ms
59,480 KB
testcase_11 AC 609 ms
59,424 KB
testcase_12 AC 573 ms
59,060 KB
testcase_13 AC 536 ms
59,432 KB
testcase_14 AC 632 ms
59,620 KB
testcase_15 WA -
testcase_16 AC 263 ms
58,304 KB
testcase_17 AC 219 ms
56,984 KB
testcase_18 AC 258 ms
57,284 KB
testcase_19 AC 277 ms
58,660 KB
testcase_20 AC 291 ms
59,816 KB
testcase_21 AC 314 ms
59,332 KB
testcase_22 AC 374 ms
59,016 KB
testcase_23 AC 580 ms
59,584 KB
testcase_24 AC 562 ms
59,240 KB
testcase_25 AC 691 ms
59,276 KB
testcase_26 AC 617 ms
60,940 KB
testcase_27 WA -
testcase_28 AC 573 ms
59,000 KB
testcase_29 AC 623 ms
60,764 KB
testcase_30 AC 627 ms
61,388 KB
testcase_31 AC 651 ms
59,516 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";
    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