結果
問題 | No.854 公平なりんご分配 |
ユーザー | qib |
提出日時 | 2022-12-29 18:52:23 |
言語 | PyPy3 (7.3.15) |
結果 |
MLE
|
実行時間 | - |
コード長 | 1,096 bytes |
コンパイル時間 | 210 ms |
コンパイル使用メモリ | 82,432 KB |
実行使用メモリ | 851,032 KB |
最終ジャッジ日時 | 2024-05-03 16:42:09 |
合計ジャッジ時間 | 11,478 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 67 ms
69,248 KB |
testcase_01 | AC | 75 ms
69,888 KB |
testcase_02 | AC | 69 ms
69,248 KB |
testcase_03 | AC | 72 ms
69,632 KB |
testcase_04 | AC | 70 ms
69,376 KB |
testcase_05 | AC | 70 ms
68,992 KB |
testcase_06 | AC | 70 ms
69,888 KB |
testcase_07 | AC | 71 ms
70,400 KB |
testcase_08 | AC | 72 ms
69,248 KB |
testcase_09 | AC | 70 ms
70,528 KB |
testcase_10 | AC | 68 ms
69,376 KB |
testcase_11 | AC | 68 ms
69,248 KB |
testcase_12 | AC | 77 ms
71,296 KB |
testcase_13 | AC | 77 ms
71,424 KB |
testcase_14 | AC | 69 ms
69,632 KB |
testcase_15 | AC | 72 ms
70,016 KB |
testcase_16 | AC | 81 ms
71,040 KB |
testcase_17 | AC | 76 ms
71,552 KB |
testcase_18 | AC | 73 ms
70,784 KB |
testcase_19 | AC | 74 ms
71,040 KB |
testcase_20 | AC | 72 ms
70,528 KB |
testcase_21 | AC | 73 ms
70,656 KB |
testcase_22 | AC | 165 ms
84,480 KB |
testcase_23 | AC | 143 ms
86,784 KB |
testcase_24 | AC | 225 ms
102,784 KB |
testcase_25 | AC | 135 ms
86,272 KB |
testcase_26 | AC | 222 ms
104,448 KB |
testcase_27 | AC | 185 ms
103,936 KB |
testcase_28 | AC | 158 ms
84,352 KB |
testcase_29 | AC | 114 ms
83,840 KB |
testcase_30 | AC | 147 ms
87,040 KB |
testcase_31 | AC | 206 ms
100,480 KB |
testcase_32 | MLE | - |
testcase_33 | MLE | - |
testcase_34 | MLE | - |
testcase_35 | -- | - |
testcase_36 | -- | - |
testcase_37 | -- | - |
testcase_38 | -- | - |
testcase_39 | -- | - |
testcase_40 | -- | - |
testcase_41 | -- | - |
testcase_42 | -- | - |
testcase_43 | -- | - |
testcase_44 | -- | - |
testcase_45 | -- | - |
testcase_46 | -- | - |
testcase_47 | -- | - |
testcase_48 | -- | - |
testcase_49 | -- | - |
testcase_50 | -- | - |
testcase_51 | -- | - |
testcase_52 | -- | - |
testcase_53 | -- | - |
testcase_54 | -- | - |
testcase_55 | -- | - |
testcase_56 | -- | - |
testcase_57 | -- | - |
testcase_58 | -- | - |
testcase_59 | -- | - |
testcase_60 | -- | - |
testcase_61 | -- | - |
testcase_62 | -- | - |
testcase_63 | -- | - |
testcase_64 | -- | - |
testcase_65 | -- | - |
testcase_66 | -- | - |
testcase_67 | -- | - |
testcase_68 | -- | - |
testcase_69 | -- | - |
testcase_70 | -- | - |
testcase_71 | -- | - |
testcase_72 | -- | - |
testcase_73 | -- | - |
testcase_74 | -- | - |
testcase_75 | -- | - |
testcase_76 | -- | - |
testcase_77 | -- | - |
testcase_78 | -- | - |
testcase_79 | -- | - |
testcase_80 | -- | - |
testcase_81 | -- | - |
testcase_82 | -- | - |
testcase_83 | -- | - |
testcase_84 | -- | - |
testcase_85 | -- | - |
testcase_86 | -- | - |
testcase_87 | -- | - |
testcase_88 | -- | - |
testcase_89 | -- | - |
testcase_90 | -- | - |
testcase_91 | -- | - |
testcase_92 | -- | - |
testcase_93 | -- | - |
ソースコード
import math n = int(input()) a = list(map(int, input().split())) m = int(math.sqrt(10 ** 9)) dp = [None for _ in range(m + 1)] s = {} for x in range(2, m + 1): if not dp[x] is None: continue dp[x] = x s[x] = [0 for _ in range(n + 1)] for y in range(2 * x, m + 1, x): if not dp[y] is None: continue dp[y] = x for i in range(n): cur = a[i] while cur > 1: s[dp[cur]][i + 1] += 1 cur //= dp[cur] for x in range(2, m + 1): if dp[x] == x: for i in range(1, n + 1): s[x][i] += s[x][i - 1] q = int(input()) for _ in range(q): p, l, r = map(int, input().split()) l -= 1 r -= 1 if p == 1: print("Yes") continue cnt = {} cur = p flg = True for x in range(2, m + 1): if cur == 1: break if dp[x] != x or cur % x != 0: continue if x > 2000: flg = False break cnt[x] = 0 while cur % x == 0: cnt[x] += 1 cur //= x if not flg or cur > 1: print("NO") continue if all(s[x][r + 1] - s[x][l] >= v for x, v in cnt.items()): print("Yes") else: print("NO")