結果

問題 No.2709 1975 Powers
ユーザー Basin-BugBasin-Bug
提出日時 2024-03-31 14:47:07
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,017 ms / 2,000 ms
コード長 840 bytes
コンパイル時間 499 ms
コンパイル使用メモリ 82,040 KB
実行使用メモリ 77,568 KB
最終ジャッジ日時 2024-10-01 03:17:53
合計ジャッジ時間 13,746 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,224 KB
testcase_01 AC 37 ms
52,440 KB
testcase_02 AC 335 ms
73,216 KB
testcase_03 AC 478 ms
70,912 KB
testcase_04 AC 773 ms
73,344 KB
testcase_05 AC 642 ms
72,192 KB
testcase_06 AC 244 ms
68,992 KB
testcase_07 AC 153 ms
71,808 KB
testcase_08 AC 605 ms
73,984 KB
testcase_09 AC 685 ms
72,960 KB
testcase_10 AC 147 ms
72,448 KB
testcase_11 AC 172 ms
69,248 KB
testcase_12 AC 481 ms
74,368 KB
testcase_13 AC 818 ms
73,984 KB
testcase_14 AC 279 ms
70,528 KB
testcase_15 AC 567 ms
74,240 KB
testcase_16 AC 358 ms
70,400 KB
testcase_17 AC 150 ms
69,504 KB
testcase_18 AC 501 ms
74,240 KB
testcase_19 AC 688 ms
72,448 KB
testcase_20 AC 290 ms
73,956 KB
testcase_21 AC 584 ms
73,728 KB
testcase_22 AC 1,017 ms
77,568 KB
testcase_23 AC 724 ms
72,576 KB
testcase_24 AC 418 ms
70,144 KB
testcase_25 AC 704 ms
72,704 KB
testcase_26 AC 804 ms
72,960 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

A.sort()

current = [[0] * P for i in range(5)]
previous = [[0] * P for i in range(5)]
previous[0][0] = 1  

for i in range(1, N + 1):
  a = pow(10, A[i - 1], P)
  b = pow(9, A[i - 1], P)
  c = pow(7, A[i - 1], P)
  d = pow(5, A[i - 1], P)  
    
  for j in range(5):
    for k in range(P):
      current[j][k] = 0

  for j in range(P):
    current[0][j] += previous[0][j]
    current[1][j] += previous[1][j]
    current[2][j] += previous[2][j]
    current[3][j] += previous[3][j]
    current[4][j] += previous[4][j]

    current[1][(j + a) % P] += previous[0][j]
    current[2][(j + b) % P] += previous[1][j]
    current[3][(j + c) % P] += previous[2][j]
    current[4][(j + d) % P] += previous[3][j]  
  previous, current = current, previous


print(previous[4][Q])
0