結果

問題 No.854 公平なりんご分配
ユーザー Navier_BoltzmannNavier_Boltzmann
提出日時 2022-04-10 17:00:48
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
MLE  
(最新)
TLE  
(最初)
実行時間 -
コード長 2,229 bytes
コンパイル時間 90 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 607,812 KB
最終ジャッジ日時 2024-12-14 05:43:15
合計ジャッジ時間 230,197 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
17,700 KB
testcase_01 AC 33 ms
112,712 KB
testcase_02 AC 32 ms
17,824 KB
testcase_03 AC 32 ms
96,640 KB
testcase_04 AC 31 ms
17,824 KB
testcase_05 AC 32 ms
101,248 KB
testcase_06 AC 31 ms
17,696 KB
testcase_07 MLE -
testcase_08 AC 32 ms
17,824 KB
testcase_09 MLE -
testcase_10 AC 32 ms
17,952 KB
testcase_11 MLE -
testcase_12 AC 33 ms
17,952 KB
testcase_13 MLE -
testcase_14 AC 30 ms
17,824 KB
testcase_15 MLE -
testcase_16 AC 35 ms
18,080 KB
testcase_17 MLE -
testcase_18 AC 32 ms
17,956 KB
testcase_19 MLE -
testcase_20 AC 34 ms
17,828 KB
testcase_21 MLE -
testcase_22 AC 74 ms
18,340 KB
testcase_23 MLE -
testcase_24 AC 122 ms
20,128 KB
testcase_25 MLE -
testcase_26 AC 128 ms
20,260 KB
testcase_27 MLE -
testcase_28 AC 69 ms
18,340 KB
testcase_29 MLE -
testcase_30 AC 65 ms
18,848 KB
testcase_31 MLE -
testcase_32 AC 1,390 ms
76,964 KB
testcase_33 MLE -
testcase_34 TLE -
testcase_35 MLE -
testcase_36 AC 1,148 ms
21,156 KB
testcase_37 MLE -
testcase_38 AC 1,022 ms
61,600 KB
testcase_39 MLE -
testcase_40 AC 2,104 ms
43,300 KB
testcase_41 MLE -
testcase_42 AC 2,733 ms
100,648 KB
testcase_43 MLE -
testcase_44 TLE -
testcase_45 MLE -
testcase_46 TLE -
testcase_47 MLE -
testcase_48 AC 2,517 ms
99,324 KB
testcase_49 MLE -
testcase_50 MLE -
testcase_51 MLE -
testcase_52 MLE -
testcase_53 MLE -
testcase_54 MLE -
testcase_55 MLE -
testcase_56 TLE -
testcase_57 MLE -
testcase_58 TLE -
testcase_59 MLE -
testcase_60 MLE -
testcase_61 MLE -
testcase_62 MLE -
testcase_63 MLE -
testcase_64 MLE -
testcase_65 MLE -
testcase_66 MLE -
testcase_67 MLE -
testcase_68 MLE -
testcase_69 MLE -
testcase_70 TLE -
testcase_71 MLE -
testcase_72 MLE -
testcase_73 TLE -
testcase_74 MLE -
testcase_75 MLE -
testcase_76 MLE -
testcase_77 MLE -
testcase_78 MLE -
testcase_79 MLE -
testcase_80 MLE -
testcase_81 MLE -
testcase_82 MLE -
testcase_83 MLE -
testcase_84 MLE -
testcase_85 TLE -
testcase_86 TLE -
testcase_87 TLE -
testcase_88 TLE -
testcase_89 TLE -
testcase_90 TLE -
testcase_91 TLE -
testcase_92 TLE -
testcase_93 MLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

def main():
    import sys 
    input = sys.stdin.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
main()
            
            
0