結果

問題 No.2709 1975 Powers
ユーザー tipstar0125tipstar0125
提出日時 2024-03-31 15:49:50
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 731 ms / 2,000 ms
コード長 510 bytes
コンパイル時間 405 ms
コンパイル使用メモリ 82,648 KB
実行使用メモリ 76,592 KB
最終ジャッジ日時 2024-09-30 20:56:31
合計ジャッジ時間 9,623 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,320 KB
testcase_01 AC 38 ms
52,520 KB
testcase_02 AC 55 ms
64,496 KB
testcase_03 AC 454 ms
76,052 KB
testcase_04 AC 626 ms
75,912 KB
testcase_05 AC 448 ms
76,248 KB
testcase_06 AC 185 ms
76,592 KB
testcase_07 AC 44 ms
60,768 KB
testcase_08 AC 172 ms
75,948 KB
testcase_09 AC 440 ms
75,932 KB
testcase_10 AC 47 ms
60,892 KB
testcase_11 AC 62 ms
67,724 KB
testcase_12 AC 84 ms
71,608 KB
testcase_13 AC 462 ms
76,204 KB
testcase_14 AC 111 ms
73,044 KB
testcase_15 AC 133 ms
76,000 KB
testcase_16 AC 362 ms
75,864 KB
testcase_17 AC 53 ms
64,740 KB
testcase_18 AC 91 ms
71,916 KB
testcase_19 AC 614 ms
75,940 KB
testcase_20 AC 59 ms
66,796 KB
testcase_21 AC 165 ms
76,200 KB
testcase_22 AC 724 ms
76,180 KB
testcase_23 AC 726 ms
75,860 KB
testcase_24 AC 731 ms
76,236 KB
testcase_25 AC 724 ms
75,880 KB
testcase_26 AC 724 ms
75,960 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from itertools import combinations
N,P,Q=list(map(int,input().split()))
A=list(map(int,input().split()))
A.sort()

M=[[0 for _ in range(4)] for _ in range(N)]
for (i,a) in enumerate(A):
    M[i][0]=pow(10,a,P)
    M[i][1]=pow(9,a,P)
    M[i][2]=pow(7,a,P)
    M[i][3]=pow(5,a,P)

ans=0
for i in range(N):
    for j in range(i+1,N):
        for k in range(j+1,N):
            for l in range(k+1,N):
                x=M[i][0]+M[j][1]+M[k][2]+M[l][3]
                x%=P
                if x==Q:ans+=1
print(ans)
0