結果
問題 | No.854 公平なりんご分配 |
ユーザー | convexineq |
提出日時 | 2021-03-26 06:33:26 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,485 bytes |
コンパイル時間 | 371 ms |
コンパイル使用メモリ | 82,368 KB |
実行使用メモリ | 212,052 KB |
最終ジャッジ日時 | 2024-11-27 16:26:22 |
合計ジャッジ時間 | 22,636 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 54 ms
64,128 KB |
testcase_01 | AC | 56 ms
63,744 KB |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | AC | 55 ms
63,616 KB |
testcase_05 | WA | - |
testcase_06 | AC | 55 ms
63,872 KB |
testcase_07 | WA | - |
testcase_08 | AC | 54 ms
64,128 KB |
testcase_09 | AC | 52 ms
63,744 KB |
testcase_10 | AC | 54 ms
64,512 KB |
testcase_11 | WA | - |
testcase_12 | AC | 59 ms
65,152 KB |
testcase_13 | WA | - |
testcase_14 | AC | 56 ms
63,616 KB |
testcase_15 | AC | 55 ms
64,384 KB |
testcase_16 | WA | - |
testcase_17 | AC | 61 ms
65,280 KB |
testcase_18 | AC | 55 ms
64,640 KB |
testcase_19 | WA | - |
testcase_20 | AC | 56 ms
64,512 KB |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | WA | - |
testcase_28 | WA | - |
testcase_29 | WA | - |
testcase_30 | WA | - |
testcase_31 | WA | - |
testcase_32 | WA | - |
testcase_33 | WA | - |
testcase_34 | WA | - |
testcase_35 | WA | - |
testcase_36 | WA | - |
testcase_37 | WA | - |
testcase_38 | WA | - |
testcase_39 | WA | - |
testcase_40 | WA | - |
testcase_41 | WA | - |
testcase_42 | WA | - |
testcase_43 | WA | - |
testcase_44 | WA | - |
testcase_45 | WA | - |
testcase_46 | WA | - |
testcase_47 | WA | - |
testcase_48 | WA | - |
testcase_49 | WA | - |
testcase_50 | WA | - |
testcase_51 | WA | - |
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 | WA | - |
testcase_77 | WA | - |
testcase_78 | WA | - |
testcase_79 | WA | - |
testcase_80 | WA | - |
testcase_81 | WA | - |
testcase_82 | AC | 351 ms
211,752 KB |
testcase_83 | WA | - |
testcase_84 | AC | 874 ms
211,616 KB |
testcase_85 | WA | - |
testcase_86 | AC | 316 ms
210,976 KB |
testcase_87 | AC | 345 ms
211,668 KB |
testcase_88 | AC | 341 ms
211,832 KB |
testcase_89 | AC | 357 ms
211,468 KB |
testcase_90 | AC | 345 ms
211,340 KB |
testcase_91 | AC | 350 ms
211,412 KB |
testcase_92 | WA | - |
testcase_93 | WA | - |
ソースコード
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] 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*(16 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**4 if i%2 else d%16): print("NO") break else: print("Yes" if x==1 else "NO")