結果

問題 No.854 公平なりんご分配
ユーザー Navier_BoltzmannNavier_Boltzmann
提出日時 2022-04-10 16:56:48
言語 PyPy3
(7.3.13)
結果
MLE  
実行時間 -
コード長 1,966 bytes
コンパイル時間 362 ms
コンパイル使用メモリ 87,268 KB
実行使用メモリ 922,780 KB
最終ジャッジ日時 2023-08-20 22:35:27
合計ジャッジ時間 37,919 ms
ジャッジサーバーID
(参考情報)
judge12 / judge13
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 MLE -
testcase_01 AC 93 ms
77,100 KB
testcase_02 AC 97 ms
77,200 KB
testcase_03 AC 98 ms
77,052 KB
testcase_04 AC 96 ms
76,952 KB
testcase_05 AC 99 ms
77,128 KB
testcase_06 AC 97 ms
76,884 KB
testcase_07 AC 98 ms
77,320 KB
testcase_08 AC 99 ms
77,412 KB
testcase_09 AC 99 ms
77,148 KB
testcase_10 AC 99 ms
77,144 KB
testcase_11 AC 99 ms
77,156 KB
testcase_12 AC 102 ms
77,308 KB
testcase_13 AC 104 ms
77,248 KB
testcase_14 AC 103 ms
76,844 KB
testcase_15 AC 99 ms
77,156 KB
testcase_16 AC 104 ms
77,572 KB
testcase_17 AC 105 ms
77,332 KB
testcase_18 AC 100 ms
77,204 KB
testcase_19 AC 102 ms
77,140 KB
testcase_20 AC 99 ms
77,012 KB
testcase_21 AC 104 ms
77,208 KB
testcase_22 AC 160 ms
79,232 KB
testcase_23 AC 160 ms
79,988 KB
testcase_24 AC 200 ms
81,744 KB
testcase_25 AC 145 ms
79,792 KB
testcase_26 AC 199 ms
81,292 KB
testcase_27 AC 166 ms
80,828 KB
testcase_28 AC 163 ms
79,464 KB
testcase_29 AC 133 ms
78,832 KB
testcase_30 AC 151 ms
79,340 KB
testcase_31 AC 204 ms
81,004 KB
testcase_32 AC 615 ms
129,096 KB
testcase_33 AC 980 ms
108,864 KB
testcase_34 AC 1,441 ms
150,220 KB
testcase_35 AC 981 ms
134,776 KB
testcase_36 AC 873 ms
84,568 KB
testcase_37 AC 601 ms
126,996 KB
testcase_38 AC 465 ms
117,684 KB
testcase_39 AC 2,472 ms
157,528 KB
testcase_40 AC 1,156 ms
105,852 KB
testcase_41 AC 1,050 ms
123,928 KB
testcase_42 AC 1,210 ms
148,432 KB
testcase_43 AC 1,849 ms
128,312 KB
testcase_44 AC 1,711 ms
144,548 KB
testcase_45 AC 2,168 ms
96,436 KB
testcase_46 AC 2,446 ms
145,756 KB
testcase_47 AC 860 ms
116,532 KB
testcase_48 AC 1,075 ms
147,332 KB
testcase_49 AC 901 ms
148,404 KB
testcase_50 AC 470 ms
126,436 KB
testcase_51 AC 2,390 ms
149,288 KB
testcase_52 MLE -
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 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

import pypyjit
pypyjit.set_param('max_unroll_recursion=-1')
import sys 
input = sys.stdin.buffer.readline
N = int(input())
A = list(map(int,input().split()))
Q = int(input())

from collections import defaultdict,Counter
class prime_factorize():
    
    def __init__(self,M=10**6):
        self.sieve = [-1]*(M+1)
        self.sieve[1] = 1
        self.p = [False]*(M+1)
        for i in range(2,M+1):
            if self.sieve[i] == -1:
                self.p[i] = True
                for j in range(i,M+1,i):
                    self.sieve[j] = i
                    
    def factors(self,x):
        tmp = []
        while self.sieve[x] != x:
            tmp.append(self.sieve[x])
            x //= self.sieve[x]
        tmp.append(self.sieve[x])
        return tmp
        
    def is_prime(self,x):
        return self.p[x]
p = prime_factorize(M=2001)
p_list = []
for i in range(1,2001):
    if p.is_prime(i):
        p_list.append(i)
d = {i:[0]*N for i in p_list}
for i in range(N):
    a = A[i]
    for k,v in Counter(p.factors(a)).items():
        if k == 1:
            continue 
        d[k][i] += v
        
        
    if i !=0:
        for k in p_list:
            d[k][i] += d[k][i-1]


for _ in range(Q):
    P,L,R = map(int,input().split())
    L -= 1
    R -= 1
    dp = {i:0 for i in p_list}
    c_flg = True
    while P != 1 and c_flg:
        flg = True
        for i in p_list:
            if P%i==0:
                dp[i] += 1
                P //= i
                flg = False
                break
        if flg:
            print('NO')
            c_flg = False
    if not c_flg:
        continue
    
    if L != 0:
        if all(d[k][R]-d[k][L-1] >= dp[k] for k in dp.keys()):
            print('Yes')
        else:
            print('NO')
        continue
    else:
        if all(d[k][R] >= dp[k] for k in dp.keys()):
            print('Yes')
        else:
            print('NO')
        continue
        
            
            
0