結果
問題 | No.854 公平なりんご分配 |
ユーザー | Navier_Boltzmann |
提出日時 | 2022-04-10 16:53:27 |
言語 | PyPy3 (7.3.15) |
結果 |
MLE
(最新)
TLE
(最初)
|
実行時間 | - |
コード長 | 1,951 bytes |
コンパイル時間 | 322 ms |
コンパイル使用メモリ | 82,240 KB |
実行使用メモリ | 849,820 KB |
最終ジャッジ日時 | 2024-12-14 05:18:24 |
合計ジャッジ時間 | 183,862 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 49 ms
70,420 KB |
testcase_01 | AC | 53 ms
276,968 KB |
testcase_02 | AC | 51 ms
69,816 KB |
testcase_03 | AC | 52 ms
220,320 KB |
testcase_04 | AC | 51 ms
70,044 KB |
testcase_05 | AC | 51 ms
266,652 KB |
testcase_06 | AC | 48 ms
69,244 KB |
testcase_07 | AC | 50 ms
269,276 KB |
testcase_08 | AC | 51 ms
70,104 KB |
testcase_09 | MLE | - |
testcase_10 | MLE | - |
testcase_11 | AC | 51 ms
69,972 KB |
testcase_12 | AC | 54 ms
70,532 KB |
testcase_13 | MLE | - |
testcase_14 | AC | 50 ms
68,916 KB |
testcase_15 | MLE | - |
testcase_16 | AC | 54 ms
70,284 KB |
testcase_17 | AC | 53 ms
64,004 KB |
testcase_18 | AC | 53 ms
64,032 KB |
testcase_19 | AC | 54 ms
64,840 KB |
testcase_20 | AC | 53 ms
63,656 KB |
testcase_21 | AC | 53 ms
64,612 KB |
testcase_22 | AC | 175 ms
79,920 KB |
testcase_23 | AC | 125 ms
79,284 KB |
testcase_24 | AC | 214 ms
81,592 KB |
testcase_25 | AC | 122 ms
78,820 KB |
testcase_26 | AC | 230 ms
82,036 KB |
testcase_27 | AC | 153 ms
80,616 KB |
testcase_28 | AC | 179 ms
79,816 KB |
testcase_29 | AC | 93 ms
78,036 KB |
testcase_30 | AC | 128 ms
78,816 KB |
testcase_31 | AC | 217 ms
81,540 KB |
testcase_32 | AC | 807 ms
136,388 KB |
testcase_33 | AC | 1,904 ms
133,424 KB |
testcase_34 | AC | 2,703 ms
186,940 KB |
testcase_35 | AC | 1,688 ms
156,220 KB |
testcase_36 | AC | 2,459 ms
121,624 KB |
testcase_37 | AC | 815 ms
134,192 KB |
testcase_38 | AC | 585 ms
121,548 KB |
testcase_39 | TLE | - |
testcase_40 | AC | 2,408 ms
138,892 KB |
testcase_41 | AC | 2,002 ms
151,284 KB |
testcase_42 | AC | 2,118 ms
175,440 KB |
testcase_43 | TLE | - |
testcase_44 | TLE | - |
testcase_45 | TLE | - |
testcase_46 | TLE | - |
testcase_47 | AC | 1,532 ms
135,296 KB |
testcase_48 | AC | 1,768 ms
169,136 KB |
testcase_49 | AC | 1,443 ms
166,024 KB |
testcase_50 | AC | 587 ms
130,224 KB |
testcase_51 | TLE | - |
testcase_52 | TLE | - |
testcase_53 | TLE | - |
testcase_54 | MLE | - |
testcase_55 | MLE | - |
testcase_56 | MLE | - |
testcase_57 | MLE | - |
testcase_58 | MLE | - |
testcase_59 | MLE | - |
testcase_60 | MLE | - |
testcase_61 | TLE | - |
testcase_62 | TLE | - |
testcase_63 | MLE | - |
testcase_64 | MLE | - |
testcase_65 | TLE | - |
testcase_66 | TLE | - |
testcase_67 | MLE | - |
testcase_68 | MLE | - |
testcase_69 | MLE | - |
testcase_70 | MLE | - |
testcase_71 | TLE | - |
testcase_72 | MLE | - |
testcase_73 | MLE | - |
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 | TLE | - |
testcase_84 | TLE | - |
testcase_85 | TLE | - |
testcase_86 | MLE | - |
testcase_87 | MLE | - |
testcase_88 | MLE | - |
testcase_89 | MLE | - |
testcase_90 | MLE | - |
testcase_91 | MLE | - |
testcase_92 | TLE | - |
testcase_93 | MLE | - |
ソースコード
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 = defaultdict(lambda:0) 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: del dp 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') del dp continue else: if all(d[k][R] >= dp[k] for k in dp.keys()): print('Yes') else: print('NO') del dp continue