結果

問題 No.2709 1975 Powers
ユーザー playerplayer
提出日時 2024-04-04 13:59:48
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 817 ms / 2,000 ms
コード長 776 bytes
コンパイル時間 327 ms
コンパイル使用メモリ 82,440 KB
実行使用メモリ 139,052 KB
最終ジャッジ日時 2024-10-01 00:23:45
合計ジャッジ時間 10,623 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 102 ms
124,220 KB
testcase_01 AC 92 ms
123,048 KB
testcase_02 AC 120 ms
130,200 KB
testcase_03 AC 402 ms
138,612 KB
testcase_04 AC 583 ms
138,908 KB
testcase_05 AC 526 ms
138,996 KB
testcase_06 AC 225 ms
138,616 KB
testcase_07 AC 102 ms
125,816 KB
testcase_08 AC 231 ms
138,776 KB
testcase_09 AC 439 ms
138,844 KB
testcase_10 AC 106 ms
127,368 KB
testcase_11 AC 125 ms
133,684 KB
testcase_12 AC 150 ms
137,164 KB
testcase_13 AC 541 ms
138,996 KB
testcase_14 AC 173 ms
138,972 KB
testcase_15 AC 187 ms
139,052 KB
testcase_16 AC 374 ms
138,768 KB
testcase_17 AC 115 ms
131,280 KB
testcase_18 AC 155 ms
136,536 KB
testcase_19 AC 708 ms
139,000 KB
testcase_20 AC 120 ms
133,828 KB
testcase_21 AC 230 ms
139,036 KB
testcase_22 AC 658 ms
138,644 KB
testcase_23 AC 679 ms
138,940 KB
testcase_24 AC 817 ms
138,952 KB
testcase_25 AC 658 ms
138,540 KB
testcase_26 AC 661 ms
138,936 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import *

n, p, q = map(int, input().split())
a = list(map(int, input().split()))

num10, num9, num7, num5 = 1, 1, 1, 1
d10, d9, d7, d5 = [0] * (2 * 10**6 + 2), [0] * (2 * 10 **
                                                6 + 2), [0] * (2 * 10**6 + 2), [0] * (2 * 10**6 + 2)
for i in range(1, 2 * 10**6 + 2):
    num10 = num10 * 10 % p
    num9 = num9 * 9 % p
    num7 = num7 * 7 % p
    num5 = num5 * 5 % p
    d10[i] = num10
    d9[i] = num9
    d7[i] = num7
    d5[i] = num5

a.sort()

ans = 0
for i1 in range(n - 3):
    for i2 in range(i1 + 1, n - 2):
        for i3 in range(i2 + 1, n - 1):
            for i4 in range(i3 + 1, n):
                if (d10[a[i1]] + d9[a[i2]] + d7[a[i3]] + d5[a[i4]]) % p == q:
                    ans += 1

print(ans)
0