結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
66,864 KB
testcase_01 AC 45 ms
59,904 KB
testcase_02 AC 47 ms
59,904 KB
testcase_03 AC 44 ms
60,928 KB
testcase_04 AC 41 ms
59,776 KB
testcase_05 AC 42 ms
60,928 KB
testcase_06 AC 40 ms
59,904 KB
testcase_07 AC 41 ms
60,928 KB
testcase_08 AC 42 ms
60,672 KB
testcase_09 AC 42 ms
61,056 KB
testcase_10 AC 42 ms
60,160 KB
testcase_11 AC 45 ms
60,800 KB
testcase_12 AC 45 ms
61,312 KB
testcase_13 AC 44 ms
61,056 KB
testcase_14 AC 41 ms
60,416 KB
testcase_15 AC 44 ms
60,800 KB
testcase_16 AC 44 ms
61,184 KB
testcase_17 AC 44 ms
61,440 KB
testcase_18 AC 42 ms
60,416 KB
testcase_19 AC 42 ms
60,800 KB
testcase_20 AC 42 ms
60,160 KB
testcase_21 AC 43 ms
61,056 KB
testcase_22 AC 71 ms
72,832 KB
testcase_23 AC 65 ms
70,528 KB
testcase_24 AC 90 ms
78,836 KB
testcase_25 AC 64 ms
70,016 KB
testcase_26 AC 89 ms
78,680 KB
testcase_27 AC 74 ms
72,960 KB
testcase_28 AC 69 ms
71,936 KB
testcase_29 AC 51 ms
65,280 KB
testcase_30 AC 60 ms
69,632 KB
testcase_31 AC 86 ms
78,208 KB
testcase_32 AC 296 ms
122,824 KB
testcase_33 AC 286 ms
105,908 KB
testcase_34 AC 455 ms
150,784 KB
testcase_35 AC 363 ms
135,040 KB
testcase_36 AC 195 ms
81,664 KB
testcase_37 AC 294 ms
122,892 KB
testcase_38 AC 252 ms
116,864 KB
testcase_39 AC 595 ms
156,672 KB
testcase_40 AC 299 ms
102,556 KB
testcase_41 AC 356 ms
123,904 KB
testcase_42 AC 435 ms
149,532 KB
testcase_43 AC 468 ms
127,236 KB
testcase_44 AC 476 ms
144,556 KB
testcase_45 AC 388 ms
93,056 KB
testcase_46 AC 553 ms
144,768 KB
testcase_47 AC 294 ms
113,796 KB
testcase_48 AC 415 ms
148,352 KB
testcase_49 AC 403 ms
149,760 KB
testcase_50 AC 277 ms
123,640 KB
testcase_51 AC 552 ms
148,224 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 #

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