結果

問題 No.1884 Sequence
ユーザー ks2mks2m
提出日時 2022-03-25 23:14:19
言語 Java21
(openjdk 21)
結果
AC  
実行時間 1,238 ms / 2,000 ms
コード長 1,238 bytes
コンパイル時間 2,383 ms
コンパイル使用メモリ 79,212 KB
実行使用メモリ 75,480 KB
最終ジャッジ日時 2024-10-14 07:23:03
合計ジャッジ時間 36,382 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 138 ms
54,028 KB
testcase_01 AC 135 ms
54,332 KB
testcase_02 AC 138 ms
54,492 KB
testcase_03 AC 135 ms
53,976 KB
testcase_04 AC 140 ms
54,068 KB
testcase_05 AC 139 ms
54,052 KB
testcase_06 AC 139 ms
54,236 KB
testcase_07 AC 137 ms
54,092 KB
testcase_08 AC 141 ms
54,224 KB
testcase_09 AC 136 ms
54,096 KB
testcase_10 AC 1,181 ms
75,480 KB
testcase_11 AC 1,238 ms
74,360 KB
testcase_12 AC 700 ms
59,904 KB
testcase_13 AC 718 ms
65,492 KB
testcase_14 AC 686 ms
59,472 KB
testcase_15 AC 977 ms
69,900 KB
testcase_16 AC 1,116 ms
71,040 KB
testcase_17 AC 845 ms
69,972 KB
testcase_18 AC 1,001 ms
70,212 KB
testcase_19 AC 908 ms
65,792 KB
testcase_20 AC 962 ms
68,168 KB
testcase_21 AC 817 ms
66,980 KB
testcase_22 AC 953 ms
70,188 KB
testcase_23 AC 1,131 ms
71,096 KB
testcase_24 AC 1,096 ms
71,188 KB
testcase_25 AC 1,092 ms
71,152 KB
testcase_26 AC 1,124 ms
70,816 KB
testcase_27 AC 721 ms
66,420 KB
testcase_28 AC 767 ms
65,716 KB
testcase_29 AC 746 ms
65,684 KB
testcase_30 AC 761 ms
65,968 KB
testcase_31 AC 908 ms
64,728 KB
testcase_32 AC 1,072 ms
71,120 KB
testcase_33 AC 909 ms
71,168 KB
testcase_34 AC 917 ms
71,048 KB
testcase_35 AC 676 ms
65,752 KB
testcase_36 AC 980 ms
70,772 KB
testcase_37 AC 958 ms
71,112 KB
testcase_38 AC 995 ms
70,300 KB
testcase_39 AC 774 ms
65,752 KB
testcase_40 AC 775 ms
67,084 KB
testcase_41 AC 1,091 ms
71,144 KB
testcase_42 AC 1,076 ms
70,924 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Arrays;
import java.util.HashSet;
import java.util.Scanner;
import java.util.Set;

public class Main {
	public static void main(String[] args) throws Exception {
		Scanner sc = new Scanner(System.in);
		int n = sc.nextInt();
		long[] a = new long[n];
		for (int i = 0; i < n; i++) {
			a[i] = sc.nextLong();
		}
		sc.close();

		Arrays.sort(a);
		long z = 0;
		long mind = 1000000000000000000L;
		Set<Long> set = new HashSet<>();
		for (int i = 0; i < n; i++) {
			if (a[i] == 0) {
				z++;
			} else {
				if (i > 0 && a[i - 1] > 0) {
					set.add(a[i] - a[i - 1]);
					mind = Math.min(mind, a[i] - a[i - 1]);
				}
			}
		}
		for (long e : set) {
			mind = gcd(mind, e);
		}

		if (judge(n, a, z, mind)) {
			System.out.println("Yes");
		} else {
			System.out.println("No");
		}
	}

	static long gcd(long a, long b) {
		return b == 0 ? a : gcd(b, a % b);
	}

	static boolean judge(int n, long[] a, long z, long mind) {
		for (int i = (int) z + 1; i < n; i++) {
			long d = a[i] - a[i - 1];
			if (mind == 0) {
				if (d > 0) {
					return false;
				}
			} else if (d % mind != 0 || d == 0) {
				return false;
			} else {
				z -= d / mind - 1;
				if (z < 0) {
					return false;
				}
			}
		}
		return true;
	}
}
0