結果

問題 No.854 公平なりんご分配
ユーザー convexineqconvexineq
提出日時 2021-03-26 05:44:52
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,389 bytes
コンパイル時間 263 ms
コンパイル使用メモリ 87,256 KB
実行使用メモリ 327,688 KB
最終ジャッジ日時 2023-08-18 10:55:11
合計ジャッジ時間 65,108 ms
ジャッジサーバーID
(参考情報)
judge11 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 87 ms
76,592 KB
testcase_01 AC 89 ms
77,120 KB
testcase_02 AC 87 ms
76,980 KB
testcase_03 AC 89 ms
77,180 KB
testcase_04 AC 86 ms
76,916 KB
testcase_05 AC 89 ms
76,988 KB
testcase_06 AC 87 ms
77,164 KB
testcase_07 AC 88 ms
77,224 KB
testcase_08 AC 88 ms
76,864 KB
testcase_09 AC 88 ms
77,348 KB
testcase_10 AC 90 ms
77,336 KB
testcase_11 AC 88 ms
77,056 KB
testcase_12 AC 92 ms
77,032 KB
testcase_13 AC 93 ms
77,016 KB
testcase_14 AC 87 ms
77,008 KB
testcase_15 AC 90 ms
76,868 KB
testcase_16 AC 93 ms
77,276 KB
testcase_17 AC 92 ms
77,368 KB
testcase_18 AC 90 ms
77,404 KB
testcase_19 AC 91 ms
76,948 KB
testcase_20 AC 90 ms
77,232 KB
testcase_21 AC 91 ms
76,868 KB
testcase_22 AC 117 ms
79,520 KB
testcase_23 AC 110 ms
79,904 KB
testcase_24 AC 130 ms
81,316 KB
testcase_25 AC 100 ms
77,240 KB
testcase_26 AC 133 ms
81,008 KB
testcase_27 AC 120 ms
80,708 KB
testcase_28 AC 119 ms
79,192 KB
testcase_29 AC 97 ms
77,348 KB
testcase_30 AC 102 ms
77,464 KB
testcase_31 AC 130 ms
80,856 KB
testcase_32 AC 299 ms
130,120 KB
testcase_33 AC 438 ms
106,368 KB
testcase_34 AC 645 ms
150,992 KB
testcase_35 AC 456 ms
134,736 KB
testcase_36 AC 274 ms
82,596 KB
testcase_37 AC 296 ms
127,344 KB
testcase_38 AC 253 ms
117,608 KB
testcase_39 AC 1,074 ms
155,600 KB
testcase_40 AC 485 ms
102,008 KB
testcase_41 AC 492 ms
123,084 KB
testcase_42 AC 538 ms
149,484 KB
testcase_43 AC 803 ms
125,296 KB
testcase_44 AC 786 ms
144,708 KB
testcase_45 AC 715 ms
91,152 KB
testcase_46 AC 1,037 ms
143,328 KB
testcase_47 AC 404 ms
113,404 KB
testcase_48 AC 500 ms
148,728 KB
testcase_49 AC 445 ms
150,112 KB
testcase_50 AC 258 ms
126,460 KB
testcase_51 AC 1,019 ms
146,552 KB
testcase_52 WA -
testcase_53 WA -
testcase_54 WA -
testcase_55 WA -
testcase_56 WA -
testcase_57 WA -
testcase_58 WA -
testcase_59 WA -
testcase_60 WA -
testcase_61 WA -
testcase_62 WA -
testcase_63 WA -
testcase_64 WA -
testcase_65 WA -
testcase_66 WA -
testcase_67 WA -
testcase_68 WA -
testcase_69 WA -
testcase_70 WA -
testcase_71 WA -
testcase_72 WA -
testcase_73 WA -
testcase_74 WA -
testcase_75 WA -
testcase_76 OLE -
testcase_77 WA -
testcase_78 WA -
testcase_79 OLE -
testcase_80 WA -
testcase_81 WA -
testcase_82 OLE -
testcase_83 MLE -
testcase_84 MLE -
testcase_85 MLE -
testcase_86 OLE -
testcase_87 OLE -
testcase_88 OLE -
testcase_89 OLE -
testcase_90 OLE -
testcase_91 OLE -
testcase_92 MLE -
testcase_93 MLE -
権限があれば一括ダウンロードができます

ソースコード

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)
z = {pi:i for i,pi in enumerate(primes)}
v = [[] for _ in range(2001)]
for p in primes:
    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((p,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]

L = len(primes)
acc = [[0]*(n+1) for _ in range(L)]
for i in range(n):
    for p,c in v[a[i]]:
        acc[z[p]][i] += c
for i in range(L):
    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())
    for i,pi in enumerate(primes):
        if zero[L-1] - zero[R]:
            print("Yes")
            continue
        c = 0
        while x%pi==0:
            x //= pi
            c += 1
        if c > acc[i][L-1] - acc[i][R]:
            print("NO")
            break
    else:
        print("Yes" if x==1 else "NO")
0