結果

問題 No.854 公平なりんご分配
ユーザー ああいいああいい
提出日時 2022-03-04 19:05:34
言語 PyPy3
(7.3.15)
結果
MLE  
実行時間 -
コード長 1,299 bytes
コンパイル時間 243 ms
コンパイル使用メモリ 82,012 KB
実行使用メモリ 329,048 KB
最終ジャッジ日時 2024-07-18 16:08:50
合計ジャッジ時間 37,150 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
59,696 KB
testcase_01 AC 42 ms
61,280 KB
testcase_02 AC 42 ms
60,464 KB
testcase_03 AC 42 ms
60,408 KB
testcase_04 AC 41 ms
59,040 KB
testcase_05 AC 41 ms
61,624 KB
testcase_06 AC 44 ms
60,284 KB
testcase_07 AC 43 ms
60,040 KB
testcase_08 AC 42 ms
59,984 KB
testcase_09 AC 43 ms
60,104 KB
testcase_10 AC 42 ms
61,228 KB
testcase_11 AC 43 ms
61,240 KB
testcase_12 AC 45 ms
61,964 KB
testcase_13 AC 45 ms
61,376 KB
testcase_14 AC 42 ms
60,296 KB
testcase_15 AC 44 ms
61,244 KB
testcase_16 AC 46 ms
62,088 KB
testcase_17 AC 46 ms
62,156 KB
testcase_18 AC 44 ms
61,760 KB
testcase_19 AC 43 ms
60,388 KB
testcase_20 AC 45 ms
62,088 KB
testcase_21 AC 43 ms
61,964 KB
testcase_22 AC 82 ms
77,536 KB
testcase_23 AC 65 ms
69,028 KB
testcase_24 AC 90 ms
78,780 KB
testcase_25 AC 69 ms
70,984 KB
testcase_26 AC 102 ms
79,032 KB
testcase_27 AC 76 ms
74,760 KB
testcase_28 AC 73 ms
74,696 KB
testcase_29 AC 54 ms
64,604 KB
testcase_30 AC 62 ms
68,132 KB
testcase_31 AC 91 ms
78,828 KB
testcase_32 AC 309 ms
129,456 KB
testcase_33 AC 274 ms
105,676 KB
testcase_34 AC 476 ms
149,116 KB
testcase_35 AC 367 ms
133,652 KB
testcase_36 AC 197 ms
80,008 KB
testcase_37 AC 289 ms
125,956 KB
testcase_38 AC 243 ms
117,224 KB
testcase_39 AC 607 ms
154,032 KB
testcase_40 AC 290 ms
100,792 KB
testcase_41 AC 338 ms
122,776 KB
testcase_42 AC 442 ms
148,188 KB
testcase_43 AC 441 ms
124,776 KB
testcase_44 AC 481 ms
142,480 KB
testcase_45 AC 382 ms
89,836 KB
testcase_46 AC 560 ms
141,488 KB
testcase_47 AC 291 ms
112,764 KB
testcase_48 AC 434 ms
147,172 KB
testcase_49 AC 410 ms
148,388 KB
testcase_50 AC 281 ms
125,484 KB
testcase_51 AC 569 ms
145,068 KB
testcase_52 AC 339 ms
106,772 KB
testcase_53 AC 269 ms
106,360 KB
testcase_54 AC 347 ms
112,244 KB
testcase_55 AC 219 ms
106,568 KB
testcase_56 AC 225 ms
108,156 KB
testcase_57 AC 268 ms
102,672 KB
testcase_58 AC 361 ms
87,868 KB
testcase_59 AC 189 ms
98,796 KB
testcase_60 AC 267 ms
101,948 KB
testcase_61 AC 157 ms
81,432 KB
testcase_62 AC 310 ms
97,996 KB
testcase_63 AC 237 ms
98,804 KB
testcase_64 AC 191 ms
85,772 KB
testcase_65 AC 357 ms
139,104 KB
testcase_66 AC 217 ms
92,916 KB
testcase_67 AC 313 ms
116,792 KB
testcase_68 AC 270 ms
94,400 KB
testcase_69 AC 377 ms
153,848 KB
testcase_70 AC 204 ms
101,976 KB
testcase_71 AC 216 ms
103,752 KB
testcase_72 AC 265 ms
81,252 KB
testcase_73 AC 291 ms
126,964 KB
testcase_74 AC 415 ms
138,104 KB
testcase_75 AC 268 ms
104,064 KB
testcase_76 AC 335 ms
124,976 KB
testcase_77 AC 390 ms
146,228 KB
testcase_78 AC 347 ms
95,744 KB
testcase_79 AC 335 ms
117,772 KB
testcase_80 AC 352 ms
120,276 KB
testcase_81 AC 306 ms
122,432 KB
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 -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
rr = sys.stdin

N = int(rr.readline())
A = list(map(int,rr.readline().split()))
prime = []
dat = [0] * (2 * 10 ** 3)
for i in range(2,2 * 10 ** 3):
    if dat[i] == 0:
        prime.append(i)
        for j in range(2 * i,2 * 10 ** 3,i):
            dat[j] = 1
n = len(prime)
_sum = [[0] * n for _ in range(N+1)]

bit = [0] * (N + 1)
def add(i,x):
    while i <= N:
        bit[i] += x
        i += i & -i
def fold(i):
    ans = 0
    while i > 0:
        ans += bit[i]
        i -= i & -i
    return ans

for i in range(N):
    if A[i] == 0:
        add(i+1,1)
        for j in range(n):
            _sum[i+1][j] = _sum[i][j]
        continue
    for j in range(n):
        p = prime[j]
        count = 0
        while A[i] % p == 0:
            count += 1
            A[i] //= p
        _sum[i+1][j] = _sum[i][j] + count
Q = int(rr.readline())
for _ in range(Q):
    P,l,r = map(int,rr.readline().split())
    if fold(r) - fold(l-1) > 0:
        print('Yes')
        continue
    flag = True
    for j in range(n):
        p = prime[j]
        count = 0
        while P % p == 0:
            count += 1
            P //= p
        if count > _sum[r][j] - _sum[l-1][j]:
            flag = False
            break
    if flag and P == 1:
        print('Yes')
    else:
        print('NO')
0