結果
問題 | No.854 公平なりんご分配 |
ユーザー | htensai |
提出日時 | 2020-01-28 08:56:07 |
言語 | Java21 (openjdk 21) |
結果 |
RE
|
実行時間 | - |
コード長 | 2,636 bytes |
コンパイル時間 | 2,293 ms |
コンパイル使用メモリ | 80,248 KB |
実行使用メモリ | 555,704 KB |
最終ジャッジ日時 | 2024-09-15 05:24:38 |
合計ジャッジ時間 | 59,811 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge6 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 130 ms
46,580 KB |
testcase_01 | AC | 131 ms
41,144 KB |
testcase_02 | RE | - |
testcase_03 | RE | - |
testcase_04 | RE | - |
testcase_05 | WA | - |
testcase_06 | AC | 133 ms
41,224 KB |
testcase_07 | RE | - |
testcase_08 | RE | - |
testcase_09 | AC | 117 ms
40,116 KB |
testcase_10 | RE | - |
testcase_11 | RE | - |
testcase_12 | WA | - |
testcase_13 | AC | 148 ms
41,640 KB |
testcase_14 | RE | - |
testcase_15 | AC | 137 ms
41,132 KB |
testcase_16 | AC | 145 ms
41,292 KB |
testcase_17 | RE | - |
testcase_18 | WA | - |
testcase_19 | AC | 145 ms
41,324 KB |
testcase_20 | AC | 143 ms
41,164 KB |
testcase_21 | AC | 143 ms
41,164 KB |
testcase_22 | RE | - |
testcase_23 | AC | 232 ms
47,956 KB |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | RE | - |
testcase_27 | WA | - |
testcase_28 | RE | - |
testcase_29 | RE | - |
testcase_30 | RE | - |
testcase_31 | RE | - |
testcase_32 | MLE | - |
testcase_33 | RE | - |
testcase_34 | TLE | - |
testcase_35 | MLE | - |
testcase_36 | RE | - |
testcase_37 | MLE | - |
testcase_38 | AC | 2,191 ms
299,356 KB |
testcase_39 | TLE | - |
testcase_40 | RE | - |
testcase_41 | MLE | - |
testcase_42 | TLE | - |
testcase_43 | TLE | - |
testcase_44 | MLE | - |
testcase_45 | RE | - |
testcase_46 | TLE | - |
testcase_47 | RE | - |
testcase_48 | MLE | - |
testcase_49 | TLE | - |
testcase_50 | MLE | - |
testcase_51 | MLE | - |
testcase_52 | RE | - |
testcase_53 | RE | - |
testcase_54 | RE | - |
testcase_55 | RE | - |
testcase_56 | RE | - |
testcase_57 | RE | - |
testcase_58 | RE | - |
testcase_59 | WA | - |
testcase_60 | RE | - |
testcase_61 | RE | - |
testcase_62 | RE | - |
testcase_63 | RE | - |
testcase_64 | RE | - |
testcase_65 | MLE | - |
testcase_66 | RE | - |
testcase_67 | MLE | - |
testcase_68 | RE | - |
testcase_69 | MLE | - |
testcase_70 | WA | - |
testcase_71 | RE | - |
testcase_72 | RE | - |
testcase_73 | TLE | - |
testcase_74 | MLE | - |
testcase_75 | RE | - |
testcase_76 | RE | - |
testcase_77 | TLE | - |
testcase_78 | RE | - |
testcase_79 | RE | - |
testcase_80 | TLE | - |
testcase_81 | RE | - |
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 | -- | - |
ソースコード
import java.util.*; public class Main { public static void main(String[] args) { Scanner sc = new Scanner(System.in); int n = sc.nextInt(); HashMap<Integer, Integer>[] maps = new HashMap[n + 1]; maps[0] = new HashMap<>(); for (int i = 1; i <= n; i++) { maps[i] =(HashMap<Integer, Integer>)(maps[i - 1].clone()); int x = sc.nextInt(); for (int j = 2; j <= Math.sqrt(x); j++) { while (x % j == 0) { if (maps[i].containsKey(j)) { maps[i].put(j, maps[i].get(j) + 1); } else { maps[i].put(j, 1); } x /= j; } } if (x > 1) { if (maps[i].containsKey(x)) { maps[i].put(x, maps[i].get(x) + 1); } else { maps[i].put(x, 1); } } } int q = sc.nextInt(); StringBuilder sb = new StringBuilder(); for (int i = 0; i < q; i++) { int p = sc.nextInt(); int left = sc.nextInt() - 1; int right = sc.nextInt() - 1; HashMap<Integer, Integer> target = (HashMap<Integer, Integer>)(maps[right].clone()); for (Map.Entry<Integer, Integer> entry : maps[left - 1].entrySet()) { target.put(entry.getKey(), target.get(entry.getKey()) - entry.getValue()); } boolean flag = true; for (int j = 2; j <= Math.sqrt(p) && flag; j++) { while (p % j == 0 && flag) { if (target.containsKey(j)) { int x = target.get(j); x--; if (x < 0) { flag = false; } else { target.put(j, x); } } else { flag = false; } p /= j; } } if (flag && p > 1) { if (target.containsKey(p)) { int x = target.get(p); x--; if (x < 0) { flag = false; } } else { flag = false; } } if (flag) { sb.append("Yes"); } else { sb.append("NO"); } sb.append("\n"); } System.out.print(sb); } }