結果

問題 No.2709 1975 Powers
ユーザー graythunder1graythunder1
提出日時 2024-08-24 01:55:05
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 669 bytes
コンパイル時間 380 ms
コンパイル使用メモリ 81,972 KB
実行使用メモリ 78,456 KB
最終ジャッジ日時 2024-08-24 01:55:19
合計ジャッジ時間 12,891 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,736 KB
testcase_01 AC 36 ms
53,072 KB
testcase_02 AC 120 ms
77,404 KB
testcase_03 AC 569 ms
77,300 KB
testcase_04 AC 744 ms
78,336 KB
testcase_05 WA -
testcase_06 AC 314 ms
77,284 KB
testcase_07 AC 46 ms
63,920 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 47 ms
64,152 KB
testcase_11 AC 135 ms
77,644 KB
testcase_12 AC 181 ms
77,720 KB
testcase_13 AC 654 ms
77,452 KB
testcase_14 AC 220 ms
77,256 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 AC 97 ms
77,220 KB
testcase_18 AC 188 ms
77,028 KB
testcase_19 AC 785 ms
77,820 KB
testcase_20 AC 150 ms
77,936 KB
testcase_21 AC 309 ms
77,396 KB
testcase_22 AC 863 ms
77,576 KB
testcase_23 WA -
testcase_24 AC 874 ms
77,996 KB
testcase_25 AC 864 ms
77,820 KB
testcase_26 AC 872 ms
77,780 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_set = [set([mod_pow(5, A[-1])])]
for i in range(1, N):
    dval_set.append(dval_set[i-1] | set([mod_pow(5, A[N-i-1])]))
dval_set = dval_set[::-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
            if (Q - abcval) % P in dval_set[ci+1]:
                ans += 1
print(ans)

    
0