結果

問題 No.1330 Multiply or Divide
ユーザー ks2mks2m
提出日時 2021-01-08 22:24:40
言語 Java21
(openjdk 21)
結果
WA  
(最新)
AC  
(最初)
実行時間 -
コード長 1,021 bytes
コンパイル時間 3,596 ms
コンパイル使用メモリ 77,740 KB
実行使用メモリ 62,300 KB
最終ジャッジ日時 2024-11-16 18:26:04
合計ジャッジ時間 16,279 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 467 ms
61,884 KB
testcase_02 AC 53 ms
36,952 KB
testcase_03 AC 53 ms
36,568 KB
testcase_04 AC 54 ms
36,756 KB
testcase_05 AC 54 ms
36,424 KB
testcase_06 AC 354 ms
61,468 KB
testcase_07 AC 1,104 ms
62,300 KB
testcase_08 AC 431 ms
61,096 KB
testcase_09 AC 428 ms
61,324 KB
testcase_10 AC 426 ms
61,952 KB
testcase_11 AC 449 ms
61,344 KB
testcase_12 AC 414 ms
61,236 KB
testcase_13 AC 53 ms
36,772 KB
testcase_14 AC 54 ms
36,956 KB
testcase_15 AC 53 ms
36,428 KB
testcase_16 AC 53 ms
36,844 KB
testcase_17 AC 53 ms
36,564 KB
testcase_18 AC 380 ms
61,524 KB
testcase_19 AC 413 ms
61,604 KB
testcase_20 AC 382 ms
61,072 KB
testcase_21 AC 381 ms
61,532 KB
testcase_22 AC 391 ms
61,392 KB
testcase_23 AC 435 ms
62,040 KB
testcase_24 AC 54 ms
36,804 KB
testcase_25 AC 54 ms
36,800 KB
testcase_26 AC 53 ms
36,756 KB
testcase_27 AC 54 ms
36,780 KB
testcase_28 AC 54 ms
36,832 KB
testcase_29 AC 54 ms
37,016 KB
testcase_30 AC 53 ms
36,864 KB
testcase_31 AC 54 ms
36,808 KB
testcase_32 AC 54 ms
36,776 KB
testcase_33 AC 53 ms
36,436 KB
testcase_34 AC 355 ms
59,232 KB
testcase_35 AC 191 ms
46,316 KB
testcase_36 AC 331 ms
58,120 KB
testcase_37 AC 321 ms
55,696 KB
testcase_38 AC 256 ms
50,164 KB
testcase_39 AC 201 ms
46,884 KB
testcase_40 AC 246 ms
45,716 KB
testcase_41 AC 176 ms
45,700 KB
testcase_42 AC 310 ms
54,964 KB
testcase_43 AC 337 ms
56,428 KB
testcase_44 AC 596 ms
61,404 KB
testcase_45 AC 932 ms
61,544 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.InputStreamReader;
import java.util.HashSet;
import java.util.Set;

public class Main {
	public static void main(String[] args) throws Exception {
		BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
		String[] sa = br.readLine().split(" ");
		int n = Integer.parseInt(sa[0]);
		int m = Integer.parseInt(sa[1]);
		int p = Integer.parseInt(sa[2]);
		sa = br.readLine().split(" ");
		int[] a = new int[n];
		for (int i = 0; i < n; i++) {
			a[i] = Integer.parseInt(sa[i]);
		}
		br.close();

		int ans = Integer.MAX_VALUE;
		label:
		for (int i = 0; i < n; i++) {
			long x = 1;
			Set<Long> set = new HashSet<>();
			set.add(x);
			int cnt = 0;
			while (x <= m) {
				cnt++;
				x *= a[i];
				if (x > m) {
					break;
				}
				if (!set.add(x)) {
					continue label;
				}
				while (x % p == 0) {
					cnt++;
					x /= p;
				}
			}
			ans = Math.min(ans, cnt);
		}
		if (ans == Integer.MAX_VALUE) {
			ans = -1;
		}
		System.out.println(ans);
	}
}
0