結果

問題 No.2709 1975 Powers
ユーザー 👑 KA37RIKA37RI
提出日時 2024-03-31 14:24:49
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 133 ms / 2,000 ms
コード長 541 bytes
コンパイル時間 251 ms
コンパイル使用メモリ 82,348 KB
実行使用メモリ 76,544 KB
最終ジャッジ日時 2024-09-30 19:29:36
合計ジャッジ時間 3,319 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
54,796 KB
testcase_01 AC 39 ms
53,940 KB
testcase_02 AC 48 ms
64,484 KB
testcase_03 AC 97 ms
76,012 KB
testcase_04 AC 121 ms
76,092 KB
testcase_05 AC 104 ms
76,144 KB
testcase_06 AC 82 ms
76,448 KB
testcase_07 AC 42 ms
55,064 KB
testcase_08 AC 75 ms
76,360 KB
testcase_09 AC 107 ms
76,544 KB
testcase_10 AC 39 ms
53,956 KB
testcase_11 AC 49 ms
65,400 KB
testcase_12 AC 56 ms
69,752 KB
testcase_13 AC 108 ms
76,052 KB
testcase_14 AC 59 ms
73,180 KB
testcase_15 AC 63 ms
73,276 KB
testcase_16 AC 100 ms
76,108 KB
testcase_17 AC 45 ms
62,060 KB
testcase_18 AC 55 ms
70,564 KB
testcase_19 AC 120 ms
76,488 KB
testcase_20 AC 49 ms
64,084 KB
testcase_21 AC 75 ms
76,296 KB
testcase_22 AC 126 ms
76,016 KB
testcase_23 AC 133 ms
76,088 KB
testcase_24 AC 130 ms
76,052 KB
testcase_25 AC 126 ms
76,136 KB
testcase_26 AC 130 ms
75,904 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import Counter

def solve(n, p, q, a):
  b = sorted(a)
  pow10 = [pow(10, x, p) for x in b]
  pow9 = [pow(9, x, p) for x in b]
  pow7 = [pow(7, x, p) for x in b]
  pow5 = [pow(5, x, p) for x in b]
  cnt = Counter()
  ans = 0
  for i in range(n):
    for j in range(i + 1, n):
      for k in range(j + 1, n):
        x = pow9[i] + pow7[j] + pow5[k]
        ans += cnt[(q - x) % p]
    cnt[pow10[i]] += 1
  return ans

n, p, q = [int(x) for x in input().split()]
a = [int(x) for x in input().split()]

print(solve(n, p, q, a))
0