結果

問題 No.2709 1975 Powers
ユーザー ThetaTheta
提出日時 2024-04-10 15:36:08
言語 PyPy3
(7.3.15)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 743 bytes
コンパイル時間 251 ms
コンパイル使用メモリ 82,708 KB
実行使用メモリ 88,548 KB
最終ジャッジ日時 2024-10-02 17:26:43
合計ジャッジ時間 26,457 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
55,568 KB
testcase_01 AC 42 ms
55,520 KB
testcase_02 AC 100 ms
65,216 KB
testcase_03 AC 1,234 ms
76,724 KB
testcase_04 AC 1,883 ms
80,048 KB
testcase_05 AC 1,400 ms
78,516 KB
testcase_06 AC 633 ms
80,360 KB
testcase_07 AC 46 ms
54,508 KB
testcase_08 AC 628 ms
88,548 KB
testcase_09 AC 1,449 ms
81,324 KB
testcase_10 AC 47 ms
55,220 KB
testcase_11 AC 144 ms
68,000 KB
testcase_12 AC 256 ms
80,696 KB
testcase_13 AC 1,578 ms
88,168 KB
testcase_14 AC 357 ms
78,020 KB
testcase_15 AC 411 ms
78,200 KB
testcase_16 AC 1,189 ms
79,332 KB
testcase_17 AC 63 ms
65,168 KB
testcase_18 AC 302 ms
85,904 KB
testcase_19 AC 1,949 ms
87,384 KB
testcase_20 AC 86 ms
67,684 KB
testcase_21 AC 612 ms
88,416 KB
testcase_22 TLE -
testcase_23 TLE -
testcase_24 TLE -
testcase_25 TLE -
testcase_26 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

from bisect import bisect_left, bisect_right
from collections import defaultdict

from itertools import combinations
import sys


def printe(*args, end="\n", **kwargs):
    print(*args, end=end, file=sys.stderr, **kwargs)


def main():
    N, P, Q = map(int, input().split())
    A = list(map(int, input().split()))
    A.sort()

    mod_P_pow_5 = defaultdict(list)
    for a_elm in A:
        mod_P_pow_5[pow(5, a_elm, P)].append(a_elm)

    ctr = 0
    for a, b, c in combinations(A, 3):
        c_mod = (pow(10, a, P) + pow(9, b, P) + pow(7, c, P)) % P
        rest_mod = (Q - c_mod) % P
        ctr += len(mod_P_pow_5[rest_mod]) - \
            bisect_right(mod_P_pow_5[rest_mod], c)
    print(ctr)


if __name__ == "__main__":
    main()
0