結果

問題 No.2709 1975 Powers
ユーザー budoubudou
提出日時 2024-04-07 06:51:27
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 560 ms / 2,000 ms
コード長 1,014 bytes
コンパイル時間 246 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 213,412 KB
最終ジャッジ日時 2024-10-01 04:22:56
合計ジャッジ時間 9,122 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 64 ms
66,944 KB
testcase_01 AC 62 ms
66,816 KB
testcase_02 AC 202 ms
111,872 KB
testcase_03 AC 322 ms
141,568 KB
testcase_04 AC 470 ms
190,976 KB
testcase_05 AC 388 ms
166,784 KB
testcase_06 AC 184 ms
101,760 KB
testcase_07 AC 96 ms
79,744 KB
testcase_08 AC 350 ms
159,872 KB
testcase_09 AC 429 ms
176,000 KB
testcase_10 AC 99 ms
81,024 KB
testcase_11 AC 136 ms
91,264 KB
testcase_12 AC 289 ms
141,440 KB
testcase_13 AC 487 ms
199,424 KB
testcase_14 AC 199 ms
109,824 KB
testcase_15 AC 338 ms
155,520 KB
testcase_16 AC 269 ms
125,840 KB
testcase_17 AC 110 ms
83,584 KB
testcase_18 AC 300 ms
144,384 KB
testcase_19 AC 440 ms
178,304 KB
testcase_20 AC 183 ms
108,928 KB
testcase_21 AC 344 ms
158,976 KB
testcase_22 AC 560 ms
213,412 KB
testcase_23 AC 472 ms
185,088 KB
testcase_24 AC 323 ms
137,344 KB
testcase_25 AC 447 ms
180,224 KB
testcase_26 AC 482 ms
193,408 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import typing
import sys
# sys.setrecursionlimit(100100)
# from collections import defaultdict
input = lambda: sys.stdin.readline().strip()
inf = 10**18
mod = 998244353
# import heapq

def solve():
  N, P, Q = map(int, input().split())
  A = list(map(int,input().split()))
  A.sort()
  # 
  lft = [0 for _ in range(P)]
  rht = [0 for _ in range(P)]
  # 最初 b = 2から
  lft[(pow(10, A[0], P)+pow(9, A[1], P))%P] = 1

  # このとき c=3以降
  for c in range(2, N):
    for d in range(c+1, N):
      rht[(pow(7, A[c], P)+pow(5, A[d], P))%P] += 1
  ans = 0
  for p in range(P):
    ans += lft[p]*rht[(Q-p)%P]

  for b in range(2, N-2):
    # b終わりを追加
    lft = [0 for _ in range(P)]
    for a in range(b):
      lft[(pow(10, A[a], P)+pow(9, A[b], P))%P] += 1
    # bはじまりを削除
    for d in range(b+1, N):
      rht[(pow(7, A[b], P)+pow(5, A[d], P))%P] -= 1
    for p in range(P):
      ans += lft[p]*rht[(Q-p)%P]

  print(ans)
def main():
  t = 1
  for _ in range(t):
    solve()
main()
0