結果

問題 No.854 公平なりんご分配
ユーザー qibqib
提出日時 2022-12-29 19:14:03
言語 PyPy3
(7.3.15)
結果
MLE  
実行時間 -
コード長 1,116 bytes
コンパイル時間 265 ms
コンパイル使用メモリ 82,396 KB
実行使用メモリ 382,140 KB
最終ジャッジ日時 2024-11-24 19:37:18
合計ジャッジ時間 64,708 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 MLE -
testcase_01 AC 52 ms
65,996 KB
testcase_02 AC 49 ms
64,932 KB
testcase_03 AC 51 ms
66,996 KB
testcase_04 AC 48 ms
64,344 KB
testcase_05 AC 51 ms
67,076 KB
testcase_06 AC 51 ms
65,788 KB
testcase_07 AC 49 ms
66,536 KB
testcase_08 AC 50 ms
65,564 KB
testcase_09 AC 50 ms
66,240 KB
testcase_10 AC 52 ms
65,964 KB
testcase_11 AC 53 ms
66,632 KB
testcase_12 AC 53 ms
67,560 KB
testcase_13 AC 53 ms
67,380 KB
testcase_14 AC 48 ms
66,440 KB
testcase_15 AC 52 ms
66,384 KB
testcase_16 AC 52 ms
66,636 KB
testcase_17 AC 53 ms
66,256 KB
testcase_18 AC 52 ms
67,904 KB
testcase_19 AC 52 ms
66,296 KB
testcase_20 AC 52 ms
66,764 KB
testcase_21 AC 53 ms
66,972 KB
testcase_22 AC 120 ms
78,824 KB
testcase_23 AC 78 ms
75,396 KB
testcase_24 AC 121 ms
79,816 KB
testcase_25 AC 88 ms
78,524 KB
testcase_26 AC 126 ms
80,776 KB
testcase_27 AC 89 ms
79,380 KB
testcase_28 AC 113 ms
78,600 KB
testcase_29 AC 69 ms
72,612 KB
testcase_30 AC 96 ms
78,612 KB
testcase_31 AC 117 ms
79,580 KB
testcase_32 AC 314 ms
129,528 KB
testcase_33 AC 393 ms
105,232 KB
testcase_34 AC 583 ms
149,172 KB
testcase_35 AC 501 ms
133,592 KB
testcase_36 AC 422 ms
82,056 KB
testcase_37 AC 298 ms
126,204 KB
testcase_38 AC 266 ms
116,280 KB
testcase_39 AC 865 ms
153,732 KB
testcase_40 AC 462 ms
101,420 KB
testcase_41 AC 447 ms
122,700 KB
testcase_42 AC 519 ms
148,084 KB
testcase_43 AC 852 ms
124,720 KB
testcase_44 AC 651 ms
142,408 KB
testcase_45 AC 758 ms
90,476 KB
testcase_46 AC 828 ms
141,524 KB
testcase_47 AC 476 ms
113,576 KB
testcase_48 AC 477 ms
146,816 KB
testcase_49 AC 461 ms
148,204 KB
testcase_50 AC 276 ms
125,412 KB
testcase_51 AC 1,039 ms
144,920 KB
testcase_52 WA -
testcase_53 WA -
testcase_54 WA -
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 WA -
testcase_66 WA -
testcase_67 WA -
testcase_68 WA -
testcase_69 WA -
testcase_70 WA -
testcase_71 WA -
testcase_72 WA -
testcase_73 WA -
testcase_74 WA -
testcase_75 WA -
testcase_76 WA -
testcase_77 WA -
testcase_78 WA -
testcase_79 WA -
testcase_80 WA -
testcase_81 WA -
testcase_82 TLE -
testcase_83 MLE -
testcase_84 MLE -
testcase_85 MLE -
testcase_86 MLE -
testcase_87 MLE -
testcase_88 TLE -
testcase_89 TLE -
testcase_90 TLE -
testcase_91 MLE -
testcase_92 TLE -
testcase_93 MLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

import math

n = int(input())
a = list(map(int, input().split()))

m = 2000
k = int(math.sqrt(10 ** 9))

dp = [None for _ in range(k + 1)]
s = {}
for x in range(2, k + 1):
  if not dp[x] is None:
    continue
  dp[x] = x
  if x <= m:
    s[x] = [0 for _ in range(n + 1)]
  for y in range(2 * x, k + 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, k + 1):
    if cur == 1:
      break
    if dp[x] != x or cur % x != 0:
      continue

    if x > m:
      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