結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 62 ms
69,412 KB
testcase_01 AC 69 ms
71,448 KB
testcase_02 AC 59 ms
69,764 KB
testcase_03 AC 63 ms
70,016 KB
testcase_04 AC 59 ms
69,604 KB
testcase_05 AC 60 ms
69,844 KB
testcase_06 AC 59 ms
71,700 KB
testcase_07 AC 65 ms
70,244 KB
testcase_08 AC 61 ms
69,764 KB
testcase_09 AC 61 ms
71,452 KB
testcase_10 AC 62 ms
70,352 KB
testcase_11 AC 62 ms
69,508 KB
testcase_12 AC 67 ms
71,860 KB
testcase_13 AC 66 ms
73,028 KB
testcase_14 AC 61 ms
70,000 KB
testcase_15 AC 58 ms
70,004 KB
testcase_16 AC 63 ms
72,028 KB
testcase_17 AC 67 ms
72,612 KB
testcase_18 AC 60 ms
71,244 KB
testcase_19 AC 61 ms
72,076 KB
testcase_20 AC 64 ms
71,444 KB
testcase_21 AC 66 ms
71,508 KB
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 TLE -
testcase_44 TLE -
testcase_45 WA -
testcase_46 TLE -
testcase_47 MLE -
testcase_48 MLE -
testcase_49 MLE -
testcase_50 MLE -
testcase_51 TLE -
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 TLE -
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
  for x in range(2, m + 1):
    if cur == 1:
      break
    elif dp[x] != x:
      continue

    if cur % x == 0:
      if x > 2000:
        print("NO")
        continue
      cnt[x] = 0

    while cur % x == 0:
      cnt[x] += 1
      cur //= x

  if 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