結果

問題 No.2709 1975 Powers
ユーザー vwxyzvwxyz
提出日時 2024-07-17 09:28:00
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 544 ms / 2,000 ms
コード長 406 bytes
コンパイル時間 1,715 ms
コンパイル使用メモリ 82,240 KB
実行使用メモリ 76,372 KB
最終ジャッジ日時 2024-07-17 09:28:15
合計ジャッジ時間 7,788 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
53,128 KB
testcase_01 AC 39 ms
52,256 KB
testcase_02 AC 58 ms
65,192 KB
testcase_03 AC 294 ms
75,992 KB
testcase_04 AC 448 ms
75,748 KB
testcase_05 AC 328 ms
76,152 KB
testcase_06 AC 151 ms
76,084 KB
testcase_07 AC 44 ms
60,404 KB
testcase_08 AC 138 ms
76,372 KB
testcase_09 AC 340 ms
76,088 KB
testcase_10 AC 46 ms
60,860 KB
testcase_11 AC 65 ms
68,072 KB
testcase_12 AC 81 ms
71,652 KB
testcase_13 AC 339 ms
76,024 KB
testcase_14 AC 95 ms
73,776 KB
testcase_15 AC 111 ms
76,000 KB
testcase_16 AC 283 ms
76,012 KB
testcase_17 AC 55 ms
65,940 KB
testcase_18 AC 85 ms
73,352 KB
testcase_19 AC 441 ms
76,056 KB
testcase_20 AC 62 ms
69,252 KB
testcase_21 AC 135 ms
75,988 KB
testcase_22 AC 513 ms
75,904 KB
testcase_23 AC 544 ms
76,028 KB
testcase_24 AC 518 ms
75,848 KB
testcase_25 AC 543 ms
75,868 KB
testcase_26 AC 514 ms
75,932 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,P,Q=map(int,input().split())
A=list(map(int,input().split()))
A.sort()
pow10=[pow(10,a,P) for a in A]
pow9=[pow(9,a,P) for a in A]
pow7=[pow(7,a,P) for a in A]
pow5=[pow(5,a,P) for a in A]
ans=0
for a in range(N):
    for b in range(a+1,N):
        for c in range(b+1,N):
            for d in range(c+1,N):
                if (pow10[a]+pow9[b]+pow7[c]+pow5[d])%P==Q:
                    ans+=1
print(ans)
0