結果

問題 No.2709 1975 Powers
ユーザー norioc
提出日時 2024-04-01 01:29:47
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 300 bytes
コンパイル時間 236 ms
コンパイル使用メモリ 82,356 KB
実行使用メモリ 82,352 KB
最終ジャッジ日時 2024-09-30 21:33:53
合計ジャッジ時間 4,672 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 1 TLE * 1 -- * 23
権限があれば一括ダウンロードができます

ソースコード

diff #

from itertools import combinations

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

ans = 0
for a, b, c, d in combinations(A, 4):
    x = pow(10, a, P)
    x += pow(9, b, P)
    x += pow(7, c, P)
    x += pow(5, d, P)
    if x % P == Q:
        ans += 1

print(ans)
0