結果

問題 No.1330 Multiply or Divide
ユーザー ks2mks2m
提出日時 2021-01-08 21:40:50
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 912 bytes
コンパイル時間 5,349 ms
コンパイル使用メモリ 76,628 KB
実行使用メモリ 67,900 KB
最終ジャッジ日時 2024-11-16 10:49:37
合計ジャッジ時間 12,833 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 329 ms
55,888 KB
testcase_02 AC 53 ms
36,624 KB
testcase_03 AC 52 ms
36,604 KB
testcase_04 AC 53 ms
36,660 KB
testcase_05 AC 53 ms
36,804 KB
testcase_06 AC 245 ms
53,436 KB
testcase_07 WA -
testcase_08 AC 321 ms
57,288 KB
testcase_09 AC 318 ms
57,552 KB
testcase_10 AC 308 ms
57,192 KB
testcase_11 AC 302 ms
57,016 KB
testcase_12 AC 302 ms
56,980 KB
testcase_13 AC 53 ms
36,676 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 53 ms
36,276 KB
testcase_17 WA -
testcase_18 AC 295 ms
57,052 KB
testcase_19 AC 307 ms
57,004 KB
testcase_20 AC 322 ms
57,108 KB
testcase_21 AC 307 ms
57,180 KB
testcase_22 AC 314 ms
57,208 KB
testcase_23 AC 307 ms
57,964 KB
testcase_24 AC 53 ms
36,672 KB
testcase_25 AC 52 ms
36,636 KB
testcase_26 AC 52 ms
36,396 KB
testcase_27 AC 52 ms
36,692 KB
testcase_28 AC 52 ms
36,928 KB
testcase_29 AC 51 ms
36,276 KB
testcase_30 AC 53 ms
36,652 KB
testcase_31 AC 52 ms
36,788 KB
testcase_32 AC 52 ms
36,796 KB
testcase_33 AC 52 ms
36,676 KB
testcase_34 AC 244 ms
54,804 KB
testcase_35 AC 154 ms
44,504 KB
testcase_36 AC 260 ms
53,132 KB
testcase_37 AC 249 ms
53,040 KB
testcase_38 AC 215 ms
48,948 KB
testcase_39 AC 169 ms
45,612 KB
testcase_40 AC 198 ms
44,932 KB
testcase_41 AC 147 ms
44,184 KB
testcase_42 AC 254 ms
53,860 KB
testcase_43 AC 255 ms
53,796 KB
testcase_44 WA -
testcase_45 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.InputStreamReader;

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();

		for (int i = 0; i < n; i++) {
			if (a[i] > m) {
				System.out.println(1);
				return;
			}
			while (a[i] % p == 0) {
				a[i] /= p;
			}
		}
		int max = 0;
		for (int i = 0; i < n; i++) {
			max = Math.max(max, a[i]);
		}
		if (max <= 1) {
			System.out.println(-1);
		} else {
			long x = 1;
			int ans = 0;
			while (x <= m) {
				ans++;
				x *= max;
			}
			System.out.println(ans);
		}
	}
}
0