結果

問題 No.854 公平なりんご分配
ユーザー qibqib
提出日時 2022-12-29 18:52:23
言語 PyPy3
(7.3.15)
結果
MLE  
実行時間 -
コード長 1,096 bytes
コンパイル時間 274 ms
コンパイル使用メモリ 82,428 KB
実行使用メモリ 849,652 KB
最終ジャッジ日時 2024-11-24 19:19:38
合計ジャッジ時間 105,194 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 57 ms
70,360 KB
testcase_01 AC 59 ms
70,992 KB
testcase_02 AC 59 ms
70,132 KB
testcase_03 AC 58 ms
70,216 KB
testcase_04 AC 57 ms
70,272 KB
testcase_05 AC 58 ms
70,580 KB
testcase_06 AC 59 ms
71,448 KB
testcase_07 AC 59 ms
72,140 KB
testcase_08 AC 57 ms
69,900 KB
testcase_09 AC 60 ms
72,016 KB
testcase_10 AC 60 ms
70,328 KB
testcase_11 AC 58 ms
70,036 KB
testcase_12 AC 64 ms
72,428 KB
testcase_13 AC 64 ms
71,988 KB
testcase_14 AC 58 ms
70,864 KB
testcase_15 AC 60 ms
71,236 KB
testcase_16 AC 64 ms
72,324 KB
testcase_17 AC 63 ms
73,072 KB
testcase_18 AC 61 ms
71,400 KB
testcase_19 AC 61 ms
71,640 KB
testcase_20 AC 63 ms
71,744 KB
testcase_21 AC 63 ms
71,144 KB
testcase_22 AC 160 ms
84,516 KB
testcase_23 AC 137 ms
86,808 KB
testcase_24 AC 211 ms
102,920 KB
testcase_25 AC 124 ms
86,568 KB
testcase_26 AC 211 ms
104,512 KB
testcase_27 AC 173 ms
104,076 KB
testcase_28 AC 145 ms
84,308 KB
testcase_29 AC 93 ms
83,856 KB
testcase_30 AC 132 ms
86,780 KB
testcase_31 AC 189 ms
100,300 KB
testcase_32 MLE -
testcase_33 MLE -
testcase_34 MLE -
testcase_35 MLE -
testcase_36 AC 603 ms
115,716 KB
testcase_37 MLE -
testcase_38 MLE -
testcase_39 MLE -
testcase_40 MLE -
testcase_41 MLE -
testcase_42 MLE -
testcase_43 MLE -
testcase_44 MLE -
testcase_45 AC 1,316 ms
214,524 KB
testcase_46 MLE -
testcase_47 MLE -
testcase_48 MLE -
testcase_49 MLE -
testcase_50 MLE -
testcase_51 MLE -
testcase_52 MLE -
testcase_53 MLE -
testcase_54 MLE -
testcase_55 MLE -
testcase_56 MLE -
testcase_57 MLE -
testcase_58 WA -
testcase_59 WA -
testcase_60 MLE -
testcase_61 WA -
testcase_62 WA -
testcase_63 MLE -
testcase_64 WA -
testcase_65 MLE -
testcase_66 WA -
testcase_67 MLE -
testcase_68 WA -
testcase_69 MLE -
testcase_70 MLE -
testcase_71 MLE -
testcase_72 WA -
testcase_73 MLE -
testcase_74 MLE -
testcase_75 MLE -
testcase_76 MLE -
testcase_77 MLE -
testcase_78 WA -
testcase_79 MLE -
testcase_80 MLE -
testcase_81 MLE -
testcase_82 MLE -
testcase_83 MLE -
testcase_84 MLE -
testcase_85 MLE -
testcase_86 MLE -
testcase_87 MLE -
testcase_88 MLE -
testcase_89 MLE -
testcase_90 MLE -
testcase_91 MLE -
testcase_92 MLE -
testcase_93 MLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

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")
0