結果

問題 No.854 公平なりんご分配
ユーザー aaaaaaaaaa2230aaaaaaaaaa2230
提出日時 2022-05-20 13:00:41
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 934 bytes
コンパイル時間 134 ms
コンパイル使用メモリ 82,020 KB
実行使用メモリ 156,672 KB
最終ジャッジ日時 2024-09-19 20:47:06
合計ジャッジ時間 15,283 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
60,228 KB
testcase_01 AC 42 ms
60,160 KB
testcase_02 AC 45 ms
59,776 KB
testcase_03 AC 44 ms
60,544 KB
testcase_04 AC 42 ms
59,904 KB
testcase_05 AC 42 ms
60,672 KB
testcase_06 AC 40 ms
59,776 KB
testcase_07 AC 43 ms
60,416 KB
testcase_08 AC 41 ms
60,620 KB
testcase_09 AC 41 ms
60,672 KB
testcase_10 AC 42 ms
60,160 KB
testcase_11 AC 43 ms
61,056 KB
testcase_12 AC 43 ms
61,312 KB
testcase_13 AC 45 ms
61,184 KB
testcase_14 AC 40 ms
59,992 KB
testcase_15 AC 43 ms
61,008 KB
testcase_16 AC 45 ms
61,184 KB
testcase_17 AC 43 ms
61,312 KB
testcase_18 AC 43 ms
60,672 KB
testcase_19 AC 45 ms
60,672 KB
testcase_20 AC 44 ms
59,904 KB
testcase_21 AC 47 ms
60,928 KB
testcase_22 AC 65 ms
69,888 KB
testcase_23 AC 63 ms
69,248 KB
testcase_24 AC 76 ms
74,112 KB
testcase_25 AC 59 ms
68,864 KB
testcase_26 AC 84 ms
79,616 KB
testcase_27 AC 67 ms
71,936 KB
testcase_28 AC 62 ms
68,864 KB
testcase_29 AC 52 ms
65,024 KB
testcase_30 AC 63 ms
68,736 KB
testcase_31 AC 86 ms
78,720 KB
testcase_32 AC 289 ms
128,804 KB
testcase_33 AC 264 ms
103,076 KB
testcase_34 AC 435 ms
145,152 KB
testcase_35 AC 346 ms
134,784 KB
testcase_36 AC 181 ms
80,036 KB
testcase_37 AC 280 ms
126,208 KB
testcase_38 AC 234 ms
116,792 KB
testcase_39 AC 569 ms
156,672 KB
testcase_40 AC 274 ms
100,960 KB
testcase_41 AC 336 ms
123,776 KB
testcase_42 AC 412 ms
147,328 KB
testcase_43 AC 449 ms
126,968 KB
testcase_44 AC 456 ms
142,336 KB
testcase_45 AC 372 ms
94,128 KB
testcase_46 AC 536 ms
145,024 KB
testcase_47 AC 278 ms
113,792 KB
testcase_48 AC 403 ms
148,480 KB
testcase_49 AC 381 ms
149,248 KB
testcase_50 AC 261 ms
126,044 KB
testcase_51 AC 529 ms
148,208 KB
testcase_52 TLE -
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 sys
input = sys.stdin.readline
n = int(input())
A = list(map(int,input().split()))
q = int(input())
P = []
LR = []
for i in range(q):
    p,l,r = map(int,input().split())
    P.append(p)
    LR.append([l-1,r])

M = 2*10**3+5
count = [0]*M
primes = []
for i in range(2,M):
    if count[i]:
        continue
    primes.append(i)
    for j in range(i,M,i):
        count[j] += 1

accum = [[0]*(len(primes)) for i in range(n+1)]
zero = [0]*(n+1)
for i,a in enumerate(A,1):
    zero[i] = zero[i-1]+int(a==0)
    for j,p in enumerate(primes):
        accum[i][j] = accum[i-1][j]
        while a%p == 0:
            a //= p
            accum[i][j] += 1

for p,(l,r) in zip(P,LR):
    if zero[r]-zero[l]:
        print("Yes")
        continue

    for j,d in enumerate(primes):
        
        num = accum[r][j]-accum[l][j]

        while num and p%d == 0:
            p //= d
            num -= 1
    print("Yes" if p == 1 else "NO")
0