結果

問題 No.2709 1975 Powers
ユーザー RYOH2718RYOH2718
提出日時 2024-03-31 14:55:51
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,844 ms / 2,000 ms
コード長 1,122 bytes
コンパイル時間 176 ms
コンパイル使用メモリ 82,248 KB
実行使用メモリ 81,208 KB
最終ジャッジ日時 2024-09-30 20:07:16
合計ジャッジ時間 22,663 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,768 KB
testcase_01 AC 38 ms
53,528 KB
testcase_02 AC 104 ms
70,872 KB
testcase_03 AC 1,092 ms
72,860 KB
testcase_04 AC 1,590 ms
74,456 KB
testcase_05 AC 1,292 ms
79,544 KB
testcase_06 AC 540 ms
75,228 KB
testcase_07 AC 52 ms
67,984 KB
testcase_08 AC 528 ms
80,596 KB
testcase_09 AC 1,247 ms
75,264 KB
testcase_10 AC 60 ms
67,328 KB
testcase_11 AC 149 ms
72,448 KB
testcase_12 AC 262 ms
81,208 KB
testcase_13 AC 1,283 ms
81,152 KB
testcase_14 AC 319 ms
69,476 KB
testcase_15 AC 410 ms
76,672 KB
testcase_16 AC 1,047 ms
78,464 KB
testcase_17 AC 82 ms
71,808 KB
testcase_18 AC 282 ms
75,832 KB
testcase_19 AC 1,633 ms
79,744 KB
testcase_20 AC 106 ms
74,240 KB
testcase_21 AC 524 ms
72,448 KB
testcase_22 AC 1,821 ms
73,728 KB
testcase_23 AC 1,844 ms
80,000 KB
testcase_24 AC 1,810 ms
78,336 KB
testcase_25 AC 1,773 ms
72,832 KB
testcase_26 AC 1,838 ms
72,192 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# 標準入力された値を整数に変換する
def INT():
    return int(input())


# 標準入力された複数の値を整数に変換する
def MI():
    return map(int, input().split())


# 標準入力された複数の値を整数のリストに変換する
def LI():
    return list(map(int, input().split()))


from bisect import bisect_right

N, P, Q = MI()
A = LI()

mod5s = [0] * P
cnt5s = [[] for _ in range(P)]
for i in range(N):
    mod5s[pow(5, A[i], P)] += 1
    cnt5s[pow(5, A[i], P)].append(A[i])

for i in range(P):
    cnt5s[i].sort()

ans = 0
for i in range(N):
    for j in range(N):
        for k in range(N):
            if not (A[i] < A[j] and A[j] < A[k]):
                continue
            p10 = pow(10, A[i], P)
            p9 = pow(9, A[j], P)
            p7 = pow(7, A[k], P)

            three_mod = (p10 + p9 + p7) % P
            res = (Q - three_mod + P) % P
            # if len(cnt5s[res]) - bisect_right(cnt5s[res], A[k]):
            #     print(A[k], cnt5s[res], bisect_right(cnt5s[res], A[k]))
            ans += len(cnt5s[res]) - bisect_right(cnt5s[res], A[k])

print(ans)
0