結果

問題 No.854 公平なりんご分配
ユーザー maspymaspy
提出日時 2020-03-18 14:03:41
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 1,142 bytes
コンパイル時間 165 ms
コンパイル使用メモリ 82,664 KB
実行使用メモリ 415,936 KB
最終ジャッジ日時 2024-12-14 01:52:55
合計ジャッジ時間 186,317 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 47 ms
67,676 KB
testcase_01 AC 48 ms
149,300 KB
testcase_02 AC 75 ms
70,796 KB
testcase_03 AC 50 ms
142,740 KB
testcase_04 AC 48 ms
68,840 KB
testcase_05 AC 51 ms
149,796 KB
testcase_06 AC 48 ms
67,836 KB
testcase_07 AC 48 ms
132,928 KB
testcase_08 AC 52 ms
70,780 KB
testcase_09 AC 50 ms
129,828 KB
testcase_10 AC 52 ms
70,940 KB
testcase_11 AC 52 ms
139,556 KB
testcase_12 AC 60 ms
74,636 KB
testcase_13 AC 55 ms
154,704 KB
testcase_14 AC 53 ms
70,472 KB
testcase_15 AC 55 ms
132,928 KB
testcase_16 AC 54 ms
73,120 KB
testcase_17 AC 56 ms
152,356 KB
testcase_18 AC 52 ms
70,528 KB
testcase_19 AC 56 ms
141,964 KB
testcase_20 AC 50 ms
70,416 KB
testcase_21 AC 52 ms
149,816 KB
testcase_22 AC 71 ms
81,088 KB
testcase_23 AC 72 ms
160,460 KB
testcase_24 AC 89 ms
82,992 KB
testcase_25 AC 72 ms
143,744 KB
testcase_26 AC 86 ms
83,388 KB
testcase_27 AC 84 ms
151,964 KB
testcase_28 AC 71 ms
81,008 KB
testcase_29 AC 62 ms
152,804 KB
testcase_30 AC 70 ms
83,020 KB
testcase_31 AC 85 ms
161,104 KB
testcase_32 AC 495 ms
113,692 KB
testcase_33 AC 398 ms
173,408 KB
testcase_34 AC 787 ms
137,196 KB
testcase_35 AC 593 ms
182,708 KB
testcase_36 AC 256 ms
87,864 KB
testcase_37 AC 441 ms
179,600 KB
testcase_38 AC 373 ms
100,204 KB
testcase_39 AC 1,012 ms
220,788 KB
testcase_40 AC 363 ms
92,492 KB
testcase_41 AC 520 ms
190,328 KB
testcase_42 AC 739 ms
133,488 KB
testcase_43 AC 702 ms
188,312 KB
testcase_44 AC 684 ms
139,552 KB
testcase_45 AC 539 ms
185,324 KB
testcase_46 AC 895 ms
141,916 KB
testcase_47 AC 425 ms
172,308 KB
testcase_48 AC 724 ms
134,420 KB
testcase_49 AC 686 ms
212,440 KB
testcase_50 AC 460 ms
111,332 KB
testcase_51 AC 795 ms
224,120 KB
testcase_52 TLE -
testcase_53 TLE -
testcase_54 TLE -
testcase_55 TLE -
testcase_56 TLE -
testcase_57 TLE -
testcase_58 TLE -
testcase_59 TLE -
testcase_60 TLE -
testcase_61 TLE -
testcase_62 TLE -
testcase_63 TLE -
testcase_64 TLE -
testcase_65 TLE -
testcase_66 TLE -
testcase_67 TLE -
testcase_68 TLE -
testcase_69 TLE -
testcase_70 TLE -
testcase_71 TLE -
testcase_72 TLE -
testcase_73 TLE -
testcase_74 TLE -
testcase_75 TLE -
testcase_76 TLE -
testcase_77 TLE -
testcase_78 TLE -
testcase_79 TLE -
testcase_80 TLE -
testcase_81 TLE -
testcase_82 TLE -
testcase_83 AC 3,139 ms
312,168 KB
testcase_84 MLE -
testcase_85 AC 3,128 ms
294,420 KB
testcase_86 TLE -
testcase_87 TLE -
testcase_88 TLE -
testcase_89 TLE -
testcase_90 TLE -
testcase_91 TLE -
testcase_92 MLE -
testcase_93 MLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/env python3.8
# %%
import sys
read = sys.stdin.buffer.read
readline = sys.stdin.buffer.readline
readlines = sys.stdin.buffer.readlines
import itertools


N = int(readline())
A = list(map(int, readline().split()))
Q = int(readline())
m = map(int, read().split())
P, L, R = zip(*zip(m, m, m))
P = list(P)


U = 2010
is_prime = [1] * U
is_prime[0] = 0
is_prime[1] = 0
for p in range(2, U):
    if p * p >= U:
        break
    for i in range(p * p, U, p):
        is_prime[i] = 0

ok = [1] * Q


def solve(p):
    ord_A = [0] * N
    ord_P = [0] * Q
    for i in range(N):
        while A[i] % p == 0:
            A[i] //= p
            ord_A[i] += 1
    for i in range(Q):
        while P[i] % p == 0:
            P[i] //= p
            ord_P[i] += 1
    ord_A_cum = [0] * (N + 1)
    ord_A_cum[1:] = itertools.accumulate(ord_A)
    for i in range(Q):
        e = ord_A_cum[R[i]] - ord_A_cum[L[i] - 1]
        if e < ord_P[i]:
            ok[i] = 0


for p in range(U):
    if is_prime[p]:
        solve(p)
for i in range(Q):
    if P[i] > 1:
        ok[i] = 0

answers = ('Yes' if x else 'NO' for x in ok)
print('\n'.join(answers))
0