結果

問題 No.1330 Multiply or Divide
ユーザー ks2mks2m
提出日時 2021-01-08 21:33:35
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 840 bytes
コンパイル時間 2,269 ms
コンパイル使用メモリ 77,660 KB
実行使用メモリ 65,860 KB
最終ジャッジ日時 2024-11-16 10:25:07
合計ジャッジ時間 13,814 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 329 ms
56,180 KB
testcase_02 WA -
testcase_03 AC 51 ms
37,088 KB
testcase_04 AC 51 ms
37,088 KB
testcase_05 AC 52 ms
37,044 KB
testcase_06 AC 247 ms
54,208 KB
testcase_07 WA -
testcase_08 AC 465 ms
57,828 KB
testcase_09 AC 476 ms
57,708 KB
testcase_10 AC 473 ms
58,232 KB
testcase_11 AC 470 ms
57,868 KB
testcase_12 AC 371 ms
58,032 KB
testcase_13 AC 53 ms
36,784 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 53 ms
37,044 KB
testcase_17 WA -
testcase_18 AC 466 ms
58,100 KB
testcase_19 AC 485 ms
58,084 KB
testcase_20 AC 468 ms
58,120 KB
testcase_21 AC 462 ms
57,912 KB
testcase_22 AC 431 ms
58,300 KB
testcase_23 AC 318 ms
58,468 KB
testcase_24 AC 50 ms
36,548 KB
testcase_25 AC 51 ms
37,304 KB
testcase_26 AC 51 ms
36,940 KB
testcase_27 AC 51 ms
37,164 KB
testcase_28 AC 53 ms
36,984 KB
testcase_29 AC 52 ms
37,088 KB
testcase_30 AC 51 ms
36,788 KB
testcase_31 AC 51 ms
37,144 KB
testcase_32 AC 50 ms
37,228 KB
testcase_33 AC 50 ms
36,608 KB
testcase_34 AC 333 ms
55,112 KB
testcase_35 AC 187 ms
47,000 KB
testcase_36 AC 316 ms
54,092 KB
testcase_37 AC 306 ms
54,196 KB
testcase_38 AC 253 ms
49,568 KB
testcase_39 AC 202 ms
47,444 KB
testcase_40 AC 235 ms
45,440 KB
testcase_41 AC 171 ms
45,856 KB
testcase_42 AC 289 ms
54,020 KB
testcase_43 AC 304 ms
53,816 KB
testcase_44 WA -
testcase_45 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.InputStreamReader;
import java.util.Arrays;

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

		Arrays.sort(a);
		int max = 0;
		for (int i = n - 1; i >= 0; i--) {
			if (a[i] % p != 0) {
				max = a[i];
				break;
			}
		}
		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