結果

問題 No.854 公平なりんご分配
ユーザー tentententen
提出日時 2020-12-16 09:34:48
言語 Java21
(openjdk 21)
結果
MLE  
実行時間 -
コード長 1,532 bytes
コンパイル時間 2,147 ms
コンパイル使用メモリ 79,620 KB
実行使用メモリ 565,172 KB
最終ジャッジ日時 2024-09-20 04:32:06
合計ジャッジ時間 102,157 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 117 ms
52,820 KB
testcase_01 AC 121 ms
53,948 KB
testcase_02 AC 133 ms
53,836 KB
testcase_03 AC 116 ms
52,996 KB
testcase_04 AC 126 ms
54,228 KB
testcase_05 AC 125 ms
53,892 KB
testcase_06 AC 127 ms
53,900 KB
testcase_07 AC 127 ms
53,592 KB
testcase_08 AC 112 ms
52,852 KB
testcase_09 AC 122 ms
54,040 KB
testcase_10 AC 124 ms
53,900 KB
testcase_11 AC 123 ms
54,124 KB
testcase_12 AC 133 ms
54,008 KB
testcase_13 AC 137 ms
53,764 KB
testcase_14 AC 128 ms
53,964 KB
testcase_15 AC 127 ms
53,948 KB
testcase_16 AC 134 ms
54,108 KB
testcase_17 AC 138 ms
54,116 KB
testcase_18 AC 136 ms
53,888 KB
testcase_19 AC 135 ms
53,828 KB
testcase_20 AC 136 ms
54,040 KB
testcase_21 AC 139 ms
53,912 KB
testcase_22 AC 212 ms
56,280 KB
testcase_23 AC 216 ms
59,000 KB
testcase_24 AC 234 ms
61,488 KB
testcase_25 AC 202 ms
56,772 KB
testcase_26 AC 243 ms
62,204 KB
testcase_27 AC 215 ms
59,496 KB
testcase_28 AC 200 ms
56,388 KB
testcase_29 AC 193 ms
56,024 KB
testcase_30 AC 207 ms
56,520 KB
testcase_31 AC 235 ms
61,736 KB
testcase_32 MLE -
testcase_33 AC 1,491 ms
202,872 KB
testcase_34 MLE -
testcase_35 MLE -
testcase_36 AC 530 ms
69,060 KB
testcase_37 AC 1,742 ms
305,616 KB
testcase_38 AC 1,784 ms
305,884 KB
testcase_39 MLE -
testcase_40 AC 1,278 ms
195,980 KB
testcase_41 AC 1,740 ms
307,416 KB
testcase_42 MLE -
testcase_43 MLE -
testcase_44 MLE -
testcase_45 AC 1,090 ms
145,152 KB
testcase_46 MLE -
testcase_47 AC 1,567 ms
294,824 KB
testcase_48 MLE -
testcase_49 MLE -
testcase_50 AC 1,734 ms
306,880 KB
testcase_51 MLE -
testcase_52 WA -
testcase_53 WA -
testcase_54 WA -
testcase_55 WA -
testcase_56 WA -
testcase_57 WA -
testcase_58 WA -
testcase_59 WA -
testcase_60 WA -
testcase_61 WA -
testcase_62 WA -
testcase_63 WA -
testcase_64 WA -
testcase_65 MLE -
testcase_66 WA -
testcase_67 WA -
testcase_68 WA -
testcase_69 MLE -
testcase_70 WA -
testcase_71 WA -
testcase_72 WA -
testcase_73 WA -
testcase_74 MLE -
testcase_75 WA -
testcase_76 MLE -
testcase_77 MLE -
testcase_78 WA -
testcase_79 WA -
testcase_80 MLE -
testcase_81 WA -
testcase_82 TLE -
testcase_83 -- -
testcase_84 -- -
testcase_85 -- -
testcase_86 -- -
testcase_87 -- -
testcase_88 -- -
testcase_89 -- -
testcase_90 -- -
testcase_91 -- -
testcase_92 -- -
testcase_93 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
	public static void main (String[] args) {
		Scanner sc = new Scanner(System.in);
		int n = sc.nextInt();
		ArrayList<HashMap<Integer, Integer>> apples = new ArrayList<>();
		apples.add(new HashMap<>());
		for (int i = 0; i < n; i++) {
		    HashMap<Integer, Integer> tmp = new HashMap<Integer, Integer>(apples.get(i));
		    int x = sc.nextInt();
		    for (int j = 2; j <= Math.sqrt(x); j++) {
		        while (x % j == 0) {
		            tmp.put(j, tmp.getOrDefault(j, 0) + 1);
		            x /= j;
		        }
		    }
		    if (x > 1) {
		        tmp.put(x, tmp.getOrDefault(x, 0) + 1);
		    }
		    apples.add(tmp);
		}
		int q = sc.nextInt();
		StringBuilder sb = new StringBuilder();
		for (int i = 0; i < q; i++) {
		    int p = sc.nextInt();
		    HashMap<Integer, Integer> left = apples.get(sc.nextInt() - 1);
		    HashMap<Integer, Integer> right = apples.get(sc.nextInt());
		    boolean can = true;
		    for (int j = 2; j <= Math.sqrt(p) && can; j++) {
		        if (p % j > 0) {
		            continue;
		        }
		        int count = right.getOrDefault(j, 0) - left.getOrDefault(j, 0);
		        while (p % j == 0) {
		            count--;
		            p /= j;
		        }
		        can = (count >= 0);
		    }
		    if (can && p > 1) {
		        can = (right.getOrDefault(p, 0) - left.getOrDefault(p, 0) >= 1);
		    }
		    if (can) {
		        sb.append("Yes");
		    } else {
		        sb.append("NO");
		    }
		    sb.append("\n");
		}
		System.out.print(sb);
	}
}
0