結果

問題 No.854 公平なりんご分配
ユーザー convexineqconvexineq
提出日時 2021-03-26 06:36:42
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 900 ms / 3,153 ms
コード長 1,501 bytes
コンパイル時間 361 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 211,584 KB
最終ジャッジ日時 2024-11-27 16:31:31
合計ジャッジ時間 22,272 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 51 ms
64,000 KB
testcase_01 AC 52 ms
63,616 KB
testcase_02 AC 52 ms
63,744 KB
testcase_03 AC 54 ms
64,768 KB
testcase_04 AC 52 ms
63,616 KB
testcase_05 AC 54 ms
64,768 KB
testcase_06 AC 55 ms
63,360 KB
testcase_07 AC 53 ms
63,232 KB
testcase_08 AC 55 ms
64,384 KB
testcase_09 AC 54 ms
64,000 KB
testcase_10 AC 55 ms
64,384 KB
testcase_11 AC 55 ms
64,512 KB
testcase_12 AC 57 ms
65,024 KB
testcase_13 AC 56 ms
65,024 KB
testcase_14 AC 52 ms
63,744 KB
testcase_15 AC 54 ms
64,512 KB
testcase_16 AC 57 ms
64,768 KB
testcase_17 AC 59 ms
65,152 KB
testcase_18 AC 56 ms
64,512 KB
testcase_19 AC 58 ms
64,896 KB
testcase_20 AC 58 ms
64,512 KB
testcase_21 AC 57 ms
64,512 KB
testcase_22 AC 92 ms
77,588 KB
testcase_23 AC 71 ms
71,680 KB
testcase_24 AC 97 ms
78,396 KB
testcase_25 AC 63 ms
67,712 KB
testcase_26 AC 91 ms
78,080 KB
testcase_27 AC 76 ms
74,368 KB
testcase_28 AC 80 ms
74,752 KB
testcase_29 AC 59 ms
66,432 KB
testcase_30 AC 65 ms
68,096 KB
testcase_31 AC 93 ms
78,224 KB
testcase_32 AC 164 ms
103,628 KB
testcase_33 AC 197 ms
91,364 KB
testcase_34 AC 246 ms
114,608 KB
testcase_35 AC 216 ms
106,388 KB
testcase_36 AC 178 ms
79,364 KB
testcase_37 AC 155 ms
101,892 KB
testcase_38 AC 142 ms
96,256 KB
testcase_39 AC 333 ms
117,472 KB
testcase_40 AC 208 ms
89,344 KB
testcase_41 AC 207 ms
99,568 KB
testcase_42 AC 236 ms
113,996 KB
testcase_43 AC 258 ms
101,256 KB
testcase_44 AC 279 ms
111,172 KB
testcase_45 AC 295 ms
84,020 KB
testcase_46 AC 326 ms
110,628 KB
testcase_47 AC 198 ms
94,768 KB
testcase_48 AC 215 ms
113,652 KB
testcase_49 AC 193 ms
113,956 KB
testcase_50 AC 145 ms
101,356 KB
testcase_51 AC 311 ms
112,732 KB
testcase_52 AC 215 ms
92,020 KB
testcase_53 AC 161 ms
91,756 KB
testcase_54 AC 211 ms
94,384 KB
testcase_55 AC 138 ms
91,392 KB
testcase_56 AC 141 ms
92,288 KB
testcase_57 AC 172 ms
89,508 KB
testcase_58 AC 245 ms
82,608 KB
testcase_59 AC 146 ms
87,900 KB
testcase_60 AC 199 ms
90,008 KB
testcase_61 AC 148 ms
79,264 KB
testcase_62 AC 199 ms
87,448 KB
testcase_63 AC 163 ms
88,232 KB
testcase_64 AC 159 ms
82,428 KB
testcase_65 AC 181 ms
109,472 KB
testcase_66 AC 167 ms
85,376 KB
testcase_67 AC 199 ms
96,612 KB
testcase_68 AC 216 ms
86,000 KB
testcase_69 AC 170 ms
117,352 KB
testcase_70 AC 145 ms
89,156 KB
testcase_71 AC 147 ms
90,392 KB
testcase_72 AC 216 ms
79,456 KB
testcase_73 AC 163 ms
102,232 KB
testcase_74 AC 215 ms
108,424 KB
testcase_75 AC 186 ms
90,644 KB
testcase_76 AC 188 ms
101,312 KB
testcase_77 AC 200 ms
113,112 KB
testcase_78 AC 265 ms
86,876 KB
testcase_79 AC 214 ms
98,124 KB
testcase_80 AC 224 ms
99,064 KB
testcase_81 AC 177 ms
100,128 KB
testcase_82 AC 326 ms
211,456 KB
testcase_83 AC 842 ms
211,328 KB
testcase_84 AC 796 ms
211,584 KB
testcase_85 AC 855 ms
211,456 KB
testcase_86 AC 307 ms
210,816 KB
testcase_87 AC 334 ms
211,200 KB
testcase_88 AC 330 ms
211,072 KB
testcase_89 AC 345 ms
211,464 KB
testcase_90 AC 344 ms
211,328 KB
testcase_91 AC 349 ms
211,584 KB
testcase_92 AC 838 ms
211,200 KB
testcase_93 AC 900 ms
211,200 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def Eratosthenes(N): #N以下の素数のリストを返す
    N+=1
    is_prime_list = [True]*N
    m = int(N**0.5)+1
    for i in range(3,m,2):
        if is_prime_list[i]:
            is_prime_list[i*i::2*i]=[False]*((N-i*i-1)//(2*i)+1)
    return [2] + [i for i in range(3,N,2) if is_prime_list[i]]

import sys
input = sys.stdin.readline

n = int(input())
*a, = map(int,input().split())
primes = Eratosthenes(2000)
M = len(primes)
v = [[] for _ in range(2001)]
for i in range(M):
    p = primes[i]
    for j in range(p,2001,p):
        c = 0
        jj = j
        while jj%p==0:
            jj //= p
            c += 1
        #print(p,j)
        v[j].append((i*64+c))

zero = [0]*(n+1)
for i in range(n):
    if a[i]==0: zero[i] = 1
for i in range(n)[::-1]:
    zero[i] += zero[i+1]

MOD = 1<<32
acc = [[0]*(n+1) for _ in range((M+1)//2)]
for i in range(n):
    for pc in v[a[i]]:
        acc[pc//64//2][i] += pc%64*(MOD if pc//64%2 else 1)

for i in range((M+1)//2):
    for j in range(n)[::-1]:
        acc[i][j] += acc[i][j+1]

Q = int(input())
for _ in range(Q):
    x,L,R = map(int,input().split())
    if zero[L-1] - zero[R]:
        print("Yes")
        continue
    for i in range(M):
        pi = primes[i]
        c = 0
        while x%pi==0:
            x //= pi
            c += 1
        if c==0: continue
        d = acc[i//2][L-1] - acc[i//2][R]
        if c > (d//MOD if i%2 else d%MOD):
            print("NO")
            break
    else:
        print("Yes" if x==1 else "NO")
0