結果
問題 | No.854 公平なりんご分配 |
ユーザー | htensai |
提出日時 | 2020-01-28 09:06:52 |
言語 | Java21 (openjdk 21) |
結果 |
MLE
|
実行時間 | - |
コード長 | 2,628 bytes |
コンパイル時間 | 2,369 ms |
コンパイル使用メモリ | 79,632 KB |
実行使用メモリ | 584,504 KB |
最終ジャッジ日時 | 2024-09-15 05:45:32 |
合計ジャッジ時間 | 82,685 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 134 ms
54,228 KB |
testcase_01 | AC | 135 ms
54,032 KB |
testcase_02 | AC | 137 ms
53,932 KB |
testcase_03 | AC | 138 ms
54,048 KB |
testcase_04 | AC | 134 ms
53,920 KB |
testcase_05 | AC | 137 ms
53,856 KB |
testcase_06 | AC | 136 ms
53,688 KB |
testcase_07 | AC | 135 ms
53,748 KB |
testcase_08 | AC | 137 ms
53,812 KB |
testcase_09 | AC | 135 ms
53,952 KB |
testcase_10 | AC | 134 ms
53,652 KB |
testcase_11 | AC | 136 ms
54,020 KB |
testcase_12 | AC | 145 ms
54,028 KB |
testcase_13 | AC | 147 ms
53,868 KB |
testcase_14 | AC | 135 ms
53,900 KB |
testcase_15 | AC | 139 ms
53,952 KB |
testcase_16 | AC | 147 ms
53,788 KB |
testcase_17 | AC | 151 ms
53,848 KB |
testcase_18 | AC | 146 ms
54,048 KB |
testcase_19 | AC | 148 ms
53,808 KB |
testcase_20 | AC | 142 ms
53,884 KB |
testcase_21 | AC | 144 ms
54,076 KB |
testcase_22 | AC | 268 ms
59,252 KB |
testcase_23 | AC | 251 ms
59,276 KB |
testcase_24 | AC | 307 ms
63,652 KB |
testcase_25 | AC | 239 ms
56,784 KB |
testcase_26 | AC | 326 ms
63,652 KB |
testcase_27 | AC | 281 ms
62,820 KB |
testcase_28 | AC | 258 ms
59,224 KB |
testcase_29 | AC | 212 ms
56,464 KB |
testcase_30 | AC | 246 ms
57,324 KB |
testcase_31 | AC | 310 ms
63,456 KB |
testcase_32 | MLE | - |
testcase_33 | AC | 2,138 ms
270,856 KB |
testcase_34 | TLE | - |
testcase_35 | MLE | - |
testcase_36 | AC | 1,356 ms
84,380 KB |
testcase_37 | MLE | - |
testcase_38 | AC | 2,047 ms
310,112 KB |
testcase_39 | TLE | - |
testcase_40 | AC | 2,664 ms
244,760 KB |
testcase_41 | MLE | - |
testcase_42 | TLE | - |
testcase_43 | TLE | - |
testcase_44 | TLE | - |
testcase_45 | AC | 2,480 ms
154,800 KB |
testcase_46 | TLE | - |
testcase_47 | AC | 2,271 ms
303,064 KB |
testcase_48 | TLE | - |
testcase_49 | TLE | - |
testcase_50 | MLE | - |
testcase_51 | TLE | - |
testcase_52 | WA | - |
testcase_53 | WA | - |
testcase_54 | MLE | - |
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 | MLE | - |
testcase_68 | WA | - |
testcase_69 | MLE | - |
testcase_70 | WA | - |
testcase_71 | WA | - |
testcase_72 | WA | - |
testcase_73 | MLE | - |
testcase_74 | TLE | - |
testcase_75 | WA | - |
testcase_76 | TLE | - |
testcase_77 | TLE | - |
testcase_78 | WA | - |
testcase_79 | TLE | - |
testcase_80 | TLE | - |
testcase_81 | MLE | - |
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(); int right = sc.nextInt(); 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); } }