結果

問題 No.406 鴨等間隔の法則
ユーザー jin128jin128
提出日時 2016-08-30 01:34:36
言語 Java21
(openjdk 21)
結果
AC  
実行時間 619 ms / 2,000 ms
コード長 575 bytes
コンパイル時間 2,068 ms
コンパイル使用メモリ 74,432 KB
実行使用メモリ 50,720 KB
最終ジャッジ日時 2024-07-07 11:55:34
合計ジャッジ時間 15,901 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 436 ms
47,692 KB
testcase_01 AC 112 ms
41,096 KB
testcase_02 AC 114 ms
41,300 KB
testcase_03 AC 102 ms
41,100 KB
testcase_04 AC 594 ms
48,324 KB
testcase_05 AC 399 ms
47,936 KB
testcase_06 AC 395 ms
48,296 KB
testcase_07 AC 435 ms
47,896 KB
testcase_08 AC 558 ms
48,168 KB
testcase_09 AC 619 ms
48,456 KB
testcase_10 AC 431 ms
48,012 KB
testcase_11 AC 511 ms
48,396 KB
testcase_12 AC 477 ms
48,324 KB
testcase_13 AC 462 ms
48,080 KB
testcase_14 AC 573 ms
48,172 KB
testcase_15 AC 202 ms
45,992 KB
testcase_16 AC 221 ms
46,560 KB
testcase_17 AC 204 ms
44,788 KB
testcase_18 AC 232 ms
45,772 KB
testcase_19 AC 228 ms
47,488 KB
testcase_20 AC 257 ms
47,820 KB
testcase_21 AC 269 ms
48,372 KB
testcase_22 AC 312 ms
47,784 KB
testcase_23 AC 446 ms
48,308 KB
testcase_24 AC 470 ms
48,240 KB
testcase_25 AC 588 ms
48,484 KB
testcase_26 AC 509 ms
49,520 KB
testcase_27 AC 439 ms
48,020 KB
testcase_28 AC 501 ms
50,720 KB
testcase_29 AC 473 ms
50,140 KB
testcase_30 AC 526 ms
49,436 KB
testcase_31 AC 541 ms
48,396 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
import java.util.Arrays;

class S25_duck{
  public static void main(String[] args){
      int n;
      String ans = "YES";
      Scanner sc = new Scanner(System.in);

      n = sc.nextInt();
      int[] duck = new int[n];

      for(int i = 0; i < n; i++){
        duck[i] = sc.nextInt();
      }

      Arrays.sort(duck);

      int a = duck[1] - duck[0];
      for(int i = 2; i < n; i++){
        if((duck[i] - duck[i-1]) != a || duck[i] == duck[i-1]){
          ans = "NO";
          break;
        }
      }
      System.out.println(ans);
  }
}
0