結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 60 ms
69,656 KB
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 62 ms
72,764 KB
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 MLE -
testcase_33 MLE -
testcase_34 MLE -
testcase_35 MLE -
testcase_36 WA -
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 WA -
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("NO1")
0