結果

問題 No.2709 1975 Powers
ユーザー N-noa21N-noa21
提出日時 2024-03-31 19:49:41
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 560 ms / 2,000 ms
コード長 553 bytes
コンパイル時間 292 ms
コンパイル使用メモリ 82,428 KB
実行使用メモリ 76,144 KB
最終ジャッジ日時 2024-09-30 21:20:04
合計ジャッジ時間 7,608 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
52,412 KB
testcase_01 AC 39 ms
52,564 KB
testcase_02 AC 61 ms
65,688 KB
testcase_03 AC 300 ms
76,020 KB
testcase_04 AC 450 ms
75,704 KB
testcase_05 AC 334 ms
75,992 KB
testcase_06 AC 154 ms
75,944 KB
testcase_07 AC 44 ms
59,484 KB
testcase_08 AC 139 ms
76,144 KB
testcase_09 AC 342 ms
75,852 KB
testcase_10 AC 46 ms
60,684 KB
testcase_11 AC 68 ms
67,964 KB
testcase_12 AC 82 ms
72,716 KB
testcase_13 AC 345 ms
76,012 KB
testcase_14 AC 96 ms
74,332 KB
testcase_15 AC 118 ms
75,832 KB
testcase_16 AC 290 ms
75,772 KB
testcase_17 AC 57 ms
65,796 KB
testcase_18 AC 89 ms
72,756 KB
testcase_19 AC 453 ms
75,824 KB
testcase_20 AC 66 ms
69,304 KB
testcase_21 AC 145 ms
76,048 KB
testcase_22 AC 531 ms
75,904 KB
testcase_23 AC 560 ms
75,924 KB
testcase_24 AC 534 ms
75,888 KB
testcase_25 AC 526 ms
76,028 KB
testcase_26 AC 520 ms
75,980 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

ten = []
nine = []
seven = []
five = []
for i in A:
    ten.append(pow(10,i,P))
    nine.append(pow(9,i,P))
    seven.append((pow(7,i,P)))
    five.append((pow(5,i,P)))
cnt = 0
#print(ten)
#print(nine)
#print(seven)
#print(five)
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):
                #print(a,b,c,d)
                if (ten[a]+nine[b]+seven[c]+five[d])%P == Q:
                    cnt += 1
print(cnt)
0