結果

問題 No.1884 Sequence
ユーザー tentententen
提出日時 2022-04-02 16:57:11
言語 Java21
(openjdk 21)
結果
AC  
実行時間 699 ms / 2,000 ms
コード長 2,375 bytes
コンパイル時間 2,682 ms
コンパイル使用メモリ 86,648 KB
実行使用メモリ 57,720 KB
最終ジャッジ日時 2024-11-21 18:08:46
合計ジャッジ時間 19,367 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 48 ms
36,928 KB
testcase_01 AC 48 ms
36,872 KB
testcase_02 AC 47 ms
37,140 KB
testcase_03 AC 49 ms
36,824 KB
testcase_04 AC 50 ms
36,800 KB
testcase_05 AC 49 ms
36,972 KB
testcase_06 AC 52 ms
37,096 KB
testcase_07 AC 49 ms
36,920 KB
testcase_08 AC 48 ms
37,076 KB
testcase_09 AC 52 ms
36,788 KB
testcase_10 AC 672 ms
57,144 KB
testcase_11 AC 699 ms
57,164 KB
testcase_12 AC 192 ms
44,912 KB
testcase_13 AC 202 ms
45,044 KB
testcase_14 AC 193 ms
44,888 KB
testcase_15 AC 446 ms
53,832 KB
testcase_16 AC 669 ms
55,868 KB
testcase_17 AC 268 ms
48,956 KB
testcase_18 AC 394 ms
54,164 KB
testcase_19 AC 288 ms
50,032 KB
testcase_20 AC 404 ms
51,260 KB
testcase_21 AC 343 ms
48,428 KB
testcase_22 AC 433 ms
51,364 KB
testcase_23 AC 664 ms
55,792 KB
testcase_24 AC 645 ms
56,000 KB
testcase_25 AC 619 ms
57,676 KB
testcase_26 AC 689 ms
57,720 KB
testcase_27 AC 198 ms
45,248 KB
testcase_28 AC 188 ms
45,200 KB
testcase_29 AC 204 ms
45,124 KB
testcase_30 AC 185 ms
44,996 KB
testcase_31 AC 405 ms
51,944 KB
testcase_32 AC 632 ms
55,532 KB
testcase_33 AC 388 ms
55,596 KB
testcase_34 AC 380 ms
55,252 KB
testcase_35 AC 215 ms
45,844 KB
testcase_36 AC 328 ms
53,968 KB
testcase_37 AC 383 ms
55,508 KB
testcase_38 AC 378 ms
55,056 KB
testcase_39 AC 261 ms
46,844 KB
testcase_40 AC 272 ms
48,196 KB
testcase_41 AC 563 ms
55,232 KB
testcase_42 AC 561 ms
55,204 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;

public class Main {
    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner();
        int n = sc.nextInt();
        int zeros = 0;
        ArrayList<Long> values = new ArrayList<>();
        for (int i = 0; i < n; i++) {
            long x = sc.nextLong();
            if (x == 0) {
                zeros++;
            } else {
                values.add(x);
            }
        }
        if (values.size() == 0) {
            System.out.println("Yes");
            return;
        }
        Collections.sort(values);
        HashMap<Long, Integer> counts = new HashMap<>(); 
        for (int i = 0; i < values.size() - 1; i++) {
            long x = values.get(i + 1) - values.get(i);
            counts.put(x, counts.getOrDefault(x, 0) + 1);
        }
        if (counts.containsKey(0L)) {
            if (counts.size() == 1) {
                System.out.println("Yes");
            } else {
                System.out.println("No");
            }
            return;
        }
        long gcd = 0;
        for (long x : counts.keySet()) {
            if (gcd == 0) {
                gcd = x;
            } else {
                gcd = getGCD(gcd, x);
            }
        }
        long sum = 0;
        for (long x : counts.keySet()) {
            sum += (x / gcd - 1) * counts.get(x);
        }
        if (sum <= zeros) {
            System.out.println("Yes");
        } else {
            System.out.println("No");
        }
    }
    
    static long getGCD(long x, long y) {
        if (x % y == 0) {
            return y;
        } else {
            return getGCD(y, x % y);
        }
    }
}


class Scanner {
    BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
    StringTokenizer st = new StringTokenizer("");
    
    public Scanner() throws Exception {
        
    }
    
    public int nextInt() throws Exception {
        return Integer.parseInt(next());
    }
    
    public long nextLong() throws Exception {
        return Long.parseLong(next());
    }
    
    public double nextDouble() throws Exception {
        return Double.parseDouble(next());
    }
    
    public String next() throws Exception {
        if (!st.hasMoreTokens()) {
            st = new StringTokenizer(br.readLine());
        }
        return st.nextToken();
    }
}
0