結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 417 ms
60,852 KB
testcase_02 AC 52 ms
36,808 KB
testcase_03 AC 52 ms
36,488 KB
testcase_04 AC 52 ms
36,964 KB
testcase_05 AC 52 ms
36,480 KB
testcase_06 AC 356 ms
61,132 KB
testcase_07 WA -
testcase_08 AC 436 ms
61,164 KB
testcase_09 AC 445 ms
61,620 KB
testcase_10 AC 417 ms
61,164 KB
testcase_11 AC 428 ms
61,288 KB
testcase_12 AC 416 ms
60,592 KB
testcase_13 AC 53 ms
36,896 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 52 ms
36,880 KB
testcase_17 WA -
testcase_18 AC 418 ms
61,204 KB
testcase_19 AC 415 ms
60,632 KB
testcase_20 AC 405 ms
61,336 KB
testcase_21 AC 420 ms
61,444 KB
testcase_22 AC 408 ms
61,252 KB
testcase_23 AC 431 ms
62,112 KB
testcase_24 AC 53 ms
36,664 KB
testcase_25 AC 52 ms
36,672 KB
testcase_26 AC 52 ms
36,808 KB
testcase_27 AC 52 ms
36,952 KB
testcase_28 AC 53 ms
36,412 KB
testcase_29 AC 53 ms
36,720 KB
testcase_30 AC 52 ms
36,784 KB
testcase_31 AC 53 ms
36,684 KB
testcase_32 AC 55 ms
36,720 KB
testcase_33 AC 52 ms
36,800 KB
testcase_34 AC 410 ms
59,760 KB
testcase_35 AC 192 ms
47,024 KB
testcase_36 AC 331 ms
57,552 KB
testcase_37 AC 324 ms
55,640 KB
testcase_38 AC 253 ms
50,180 KB
testcase_39 AC 211 ms
46,328 KB
testcase_40 AC 249 ms
45,648 KB
testcase_41 AC 171 ms
45,856 KB
testcase_42 AC 301 ms
54,604 KB
testcase_43 AC 320 ms
56,588 KB
testcase_44 WA -
testcase_45 WA -
権限があれば一括ダウンロードができます

ソースコード

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) {
					x /= p;
				}
			}
			ans = Math.min(ans, cnt);
		}
		if (ans == Integer.MAX_VALUE) {
			ans = -1;
		}
		System.out.println(ans);
	}
}
0