結果

問題 No.2709 1975 Powers
ユーザー graythunder1graythunder1
提出日時 2024-08-24 02:09:42
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,217 ms / 2,000 ms
コード長 646 bytes
コンパイル時間 368 ms
コンパイル使用メモリ 82,368 KB
実行使用メモリ 219,008 KB
最終ジャッジ日時 2024-08-24 02:10:01
合計ジャッジ時間 17,246 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,984 KB
testcase_01 AC 39 ms
52,884 KB
testcase_02 AC 169 ms
118,520 KB
testcase_03 AC 728 ms
147,396 KB
testcase_04 AC 1,099 ms
196,556 KB
testcase_05 AC 839 ms
172,196 KB
testcase_06 AC 423 ms
106,988 KB
testcase_07 AC 59 ms
75,080 KB
testcase_08 AC 453 ms
166,792 KB
testcase_09 AC 873 ms
181,820 KB
testcase_10 AC 61 ms
76,280 KB
testcase_11 AC 164 ms
96,908 KB
testcase_12 AC 271 ms
148,144 KB
testcase_13 AC 908 ms
205,580 KB
testcase_14 AC 290 ms
116,040 KB
testcase_15 AC 424 ms
162,532 KB
testcase_16 AC 694 ms
131,400 KB
testcase_17 AC 114 ms
91,892 KB
testcase_18 AC 312 ms
151,452 KB
testcase_19 AC 1,068 ms
183,580 KB
testcase_20 AC 203 ms
115,520 KB
testcase_21 AC 444 ms
164,608 KB
testcase_22 AC 1,214 ms
219,008 KB
testcase_23 AC 1,194 ms
190,320 KB
testcase_24 AC 1,132 ms
142,560 KB
testcase_25 AC 1,199 ms
185,500 KB
testcase_26 AC 1,217 ms
199,004 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, P, Q = map(int, input().split(" "))
A = sorted(list(map(int, input().split(" "))))

def mod_pow(a, n):
    res = 1
    while n > 0:
        if n & 1:
            res = res * a % P
        a = a * a % P
        n >>= 1
    return res

dval_cnt = [[0 for _ in range(P)] for _ in range(N)]
for n in range(N):
    dval = mod_pow(5, A[n])
    for k in range(n+1):
        dval_cnt[k][dval] += 1

ans = 0
for ai in range(N-3):
    for bi in range(ai+1, N-2):
        for ci in range(bi+1, N-1):
            abcval = (mod_pow(10, A[ai]) + mod_pow(9, A[bi]) + mod_pow(7, A[ci])) % P
            ans += dval_cnt[ci+1][(Q - abcval) % P]
print(ans)

    
0