結果
問題 | No.854 公平なりんご分配 |
ユーザー | convexineq |
提出日時 | 2021-03-26 05:47:42 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,379 bytes |
コンパイル時間 | 359 ms |
コンパイル使用メモリ | 82,048 KB |
実行使用メモリ | 321,664 KB |
最終ジャッジ日時 | 2024-11-27 15:16:13 |
合計ジャッジ時間 | 19,640 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 54 ms
63,616 KB |
testcase_01 | AC | 57 ms
65,152 KB |
testcase_02 | WA | - |
testcase_03 | AC | 60 ms
65,024 KB |
testcase_04 | AC | 56 ms
64,256 KB |
testcase_05 | AC | 59 ms
64,512 KB |
testcase_06 | AC | 58 ms
65,280 KB |
testcase_07 | WA | - |
testcase_08 | AC | 57 ms
64,768 KB |
testcase_09 | AC | 58 ms
65,024 KB |
testcase_10 | AC | 56 ms
64,896 KB |
testcase_11 | WA | - |
testcase_12 | AC | 57 ms
65,280 KB |
testcase_13 | AC | 57 ms
65,280 KB |
testcase_14 | AC | 53 ms
64,128 KB |
testcase_15 | AC | 57 ms
65,664 KB |
testcase_16 | AC | 55 ms
65,408 KB |
testcase_17 | WA | - |
testcase_18 | AC | 55 ms
65,152 KB |
testcase_19 | AC | 56 ms
65,152 KB |
testcase_20 | AC | 54 ms
65,664 KB |
testcase_21 | AC | 56 ms
65,152 KB |
testcase_22 | WA | - |
testcase_23 | RE | - |
testcase_24 | RE | - |
testcase_25 | RE | - |
testcase_26 | RE | - |
testcase_27 | RE | - |
testcase_28 | WA | - |
testcase_29 | WA | - |
testcase_30 | RE | - |
testcase_31 | RE | - |
testcase_32 | RE | - |
testcase_33 | RE | - |
testcase_34 | RE | - |
testcase_35 | RE | - |
testcase_36 | RE | - |
testcase_37 | RE | - |
testcase_38 | RE | - |
testcase_39 | RE | - |
testcase_40 | RE | - |
testcase_41 | RE | - |
testcase_42 | RE | - |
testcase_43 | RE | - |
testcase_44 | RE | - |
testcase_45 | RE | - |
testcase_46 | RE | - |
testcase_47 | RE | - |
testcase_48 | RE | - |
testcase_49 | RE | - |
testcase_50 | RE | - |
testcase_51 | RE | - |
testcase_52 | RE | - |
testcase_53 | RE | - |
testcase_54 | RE | - |
testcase_55 | RE | - |
testcase_56 | RE | - |
testcase_57 | RE | - |
testcase_58 | RE | - |
testcase_59 | RE | - |
testcase_60 | RE | - |
testcase_61 | RE | - |
testcase_62 | RE | - |
testcase_63 | RE | - |
testcase_64 | RE | - |
testcase_65 | RE | - |
testcase_66 | RE | - |
testcase_67 | RE | - |
testcase_68 | RE | - |
testcase_69 | RE | - |
testcase_70 | RE | - |
testcase_71 | RE | - |
testcase_72 | RE | - |
testcase_73 | RE | - |
testcase_74 | RE | - |
testcase_75 | RE | - |
testcase_76 | RE | - |
testcase_77 | RE | - |
testcase_78 | RE | - |
testcase_79 | RE | - |
testcase_80 | RE | - |
testcase_81 | RE | - |
testcase_82 | MLE | - |
testcase_83 | MLE | - |
testcase_84 | MLE | - |
testcase_85 | MLE | - |
testcase_86 | MLE | - |
testcase_87 | MLE | - |
testcase_88 | MLE | - |
testcase_89 | MLE | - |
testcase_90 | MLE | - |
testcase_91 | MLE | - |
testcase_92 | MLE | - |
testcase_93 | MLE | - |
ソースコード
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()) if zero[L-1] - zero[R]: print("Yes") continue for i in range(L): c = 0 while x%primes[i]==0: x //= primes[i] c += 1 if c > acc[i][L-1] - acc[i][R]: print("NO") break else: print("Yes" if x==1 else "NO")