結果
問題 | No.854 公平なりんご分配 |
ユーザー | Navier_Boltzmann |
提出日時 | 2022-04-10 16:55:44 |
言語 | PyPy3 (7.3.15) |
結果 |
MLE
|
実行時間 | - |
コード長 | 1,906 bytes |
コンパイル時間 | 369 ms |
コンパイル使用メモリ | 82,476 KB |
実行使用メモリ | 849,748 KB |
最終ジャッジ日時 | 2024-12-14 05:26:02 |
合計ジャッジ時間 | 162,551 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 51 ms
68,516 KB |
testcase_01 | MLE | - |
testcase_02 | AC | 55 ms
70,288 KB |
testcase_03 | MLE | - |
testcase_04 | AC | 51 ms
69,348 KB |
testcase_05 | MLE | - |
testcase_06 | AC | 52 ms
68,892 KB |
testcase_07 | MLE | - |
testcase_08 | AC | 53 ms
70,916 KB |
testcase_09 | AC | 52 ms
63,088 KB |
testcase_10 | AC | 52 ms
63,844 KB |
testcase_11 | AC | 55 ms
63,460 KB |
testcase_12 | AC | 59 ms
66,172 KB |
testcase_13 | AC | 60 ms
65,716 KB |
testcase_14 | AC | 51 ms
62,940 KB |
testcase_15 | AC | 54 ms
64,636 KB |
testcase_16 | AC | 60 ms
66,020 KB |
testcase_17 | AC | 61 ms
67,160 KB |
testcase_18 | AC | 56 ms
64,492 KB |
testcase_19 | AC | 55 ms
64,560 KB |
testcase_20 | AC | 54 ms
63,492 KB |
testcase_21 | AC | 55 ms
63,892 KB |
testcase_22 | AC | 113 ms
77,416 KB |
testcase_23 | AC | 110 ms
78,180 KB |
testcase_24 | AC | 150 ms
79,468 KB |
testcase_25 | AC | 107 ms
78,200 KB |
testcase_26 | AC | 167 ms
79,440 KB |
testcase_27 | AC | 137 ms
80,212 KB |
testcase_28 | AC | 120 ms
77,720 KB |
testcase_29 | AC | 84 ms
77,032 KB |
testcase_30 | AC | 103 ms
78,100 KB |
testcase_31 | AC | 157 ms
79,652 KB |
testcase_32 | AC | 535 ms
128,408 KB |
testcase_33 | AC | 821 ms
105,428 KB |
testcase_34 | AC | 1,231 ms
148,772 KB |
testcase_35 | AC | 850 ms
133,432 KB |
testcase_36 | AC | 613 ms
81,904 KB |
testcase_37 | AC | 513 ms
125,252 KB |
testcase_38 | AC | 407 ms
115,728 KB |
testcase_39 | AC | 2,087 ms
154,016 KB |
testcase_40 | AC | 974 ms
102,088 KB |
testcase_41 | AC | 898 ms
121,892 KB |
testcase_42 | AC | 1,032 ms
147,676 KB |
testcase_43 | AC | 1,529 ms
125,008 KB |
testcase_44 | AC | 1,419 ms
142,228 KB |
testcase_45 | AC | 1,728 ms
92,560 KB |
testcase_46 | AC | 2,061 ms
142,572 KB |
testcase_47 | AC | 741 ms
112,576 KB |
testcase_48 | AC | 946 ms
146,652 KB |
testcase_49 | AC | 811 ms
148,332 KB |
testcase_50 | AC | 419 ms
125,040 KB |
testcase_51 | AC | 2,064 ms
145,620 KB |
testcase_52 | TLE | - |
testcase_53 | TLE | - |
testcase_54 | MLE | - |
testcase_55 | TLE | - |
testcase_56 | TLE | - |
testcase_57 | TLE | - |
testcase_58 | TLE | - |
testcase_59 | TLE | - |
testcase_60 | TLE | - |
testcase_61 | TLE | - |
testcase_62 | TLE | - |
testcase_63 | MLE | - |
testcase_64 | MLE | - |
testcase_65 | TLE | - |
testcase_66 | TLE | - |
testcase_67 | MLE | - |
testcase_68 | TLE | - |
testcase_69 | TLE | - |
testcase_70 | TLE | - |
testcase_71 | TLE | - |
testcase_72 | TLE | - |
testcase_73 | TLE | - |
testcase_74 | TLE | - |
testcase_75 | TLE | - |
testcase_76 | TLE | - |
testcase_77 | TLE | - |
testcase_78 | TLE | - |
testcase_79 | TLE | - |
testcase_80 | TLE | - |
testcase_81 | TLE | - |
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 = {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