結果

問題 No.1884 Sequence
ユーザー ks2mks2m
提出日時 2022-03-25 22:55:51
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 995 bytes
コンパイル時間 3,818 ms
コンパイル使用メモリ 77,552 KB
実行使用メモリ 71,852 KB
最終ジャッジ日時 2024-10-14 06:59:08
合計ジャッジ時間 35,566 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 135 ms
54,060 KB
testcase_01 AC 133 ms
54,228 KB
testcase_02 AC 134 ms
54,100 KB
testcase_03 AC 136 ms
54,028 KB
testcase_04 AC 132 ms
54,020 KB
testcase_05 AC 134 ms
54,332 KB
testcase_06 AC 135 ms
53,836 KB
testcase_07 AC 136 ms
53,868 KB
testcase_08 AC 135 ms
54,252 KB
testcase_09 AC 132 ms
54,332 KB
testcase_10 AC 1,065 ms
71,852 KB
testcase_11 AC 1,079 ms
71,488 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 658 ms
59,364 KB
testcase_15 AC 897 ms
70,012 KB
testcase_16 AC 1,036 ms
71,460 KB
testcase_17 WA -
testcase_18 AC 948 ms
70,492 KB
testcase_19 AC 868 ms
65,332 KB
testcase_20 AC 917 ms
68,088 KB
testcase_21 AC 797 ms
65,940 KB
testcase_22 AC 918 ms
69,888 KB
testcase_23 WA -
testcase_24 WA -
testcase_25 AC 1,039 ms
71,692 KB
testcase_26 AC 1,051 ms
71,796 KB
testcase_27 AC 706 ms
65,484 KB
testcase_28 AC 729 ms
65,012 KB
testcase_29 AC 731 ms
65,900 KB
testcase_30 AC 723 ms
65,660 KB
testcase_31 AC 850 ms
64,596 KB
testcase_32 AC 1,019 ms
70,808 KB
testcase_33 AC 891 ms
70,880 KB
testcase_34 AC 905 ms
70,640 KB
testcase_35 AC 787 ms
64,844 KB
testcase_36 AC 933 ms
70,700 KB
testcase_37 AC 894 ms
70,808 KB
testcase_38 AC 959 ms
71,152 KB
testcase_39 AC 816 ms
65,696 KB
testcase_40 AC 813 ms
66,524 KB
testcase_41 AC 1,038 ms
70,620 KB
testcase_42 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

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

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 max = 0;
		long min = 9;
		long z = 0;
		long mind = 1000000000000000000L;
		for (int i = 0; i < n; i++) {
			if (a[i] == 0) {
				z++;
			} else {
				max = Math.max(max, a[i]);
				min = Math.min(min, a[i]);
				if (i > 0) {
					mind = Math.min(mind, a[i] - a[i - 1]);
				}
			}
		}

		for (int i = (int) z + 1; i < n; i++) {
			long d = a[i] - a[i - 1];
			if (mind == 0) {
				if (d > 0) {
					System.out.println("No");
					return;
				}
			} else if (d % mind != 0 || d == 0) {
				System.out.println("No");
				return;
			} else {
				z -= d / mind - 1;
				if (z < 0) {
					System.out.println("No");
					return;
				}
			}
		}
		System.out.println("Yes");
	}
}
0