結果

問題 No.2709 1975 Powers
ユーザー sepa38sepa38
提出日時 2024-02-06 20:15:52
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 109 ms / 2,000 ms
コード長 381 bytes
コンパイル時間 150 ms
コンパイル使用メモリ 82,136 KB
実行使用メモリ 62,848 KB
最終ジャッジ日時 2024-09-28 12:11:38
合計ジャッジ時間 3,484 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
51,712 KB
testcase_01 AC 42 ms
51,456 KB
testcase_02 AC 53 ms
61,312 KB
testcase_03 AC 90 ms
61,440 KB
testcase_04 AC 106 ms
61,824 KB
testcase_05 AC 94 ms
61,568 KB
testcase_06 AC 78 ms
61,696 KB
testcase_07 AC 40 ms
52,736 KB
testcase_08 AC 77 ms
62,848 KB
testcase_09 AC 96 ms
61,824 KB
testcase_10 AC 39 ms
53,120 KB
testcase_11 AC 55 ms
60,800 KB
testcase_12 AC 61 ms
61,184 KB
testcase_13 AC 95 ms
61,568 KB
testcase_14 AC 65 ms
61,056 KB
testcase_15 AC 69 ms
62,592 KB
testcase_16 AC 89 ms
61,568 KB
testcase_17 AC 42 ms
52,736 KB
testcase_18 AC 63 ms
61,568 KB
testcase_19 AC 105 ms
61,824 KB
testcase_20 AC 52 ms
61,312 KB
testcase_21 AC 73 ms
61,696 KB
testcase_22 AC 109 ms
61,568 KB
testcase_23 AC 109 ms
61,696 KB
testcase_24 AC 108 ms
61,824 KB
testcase_25 AC 108 ms
61,696 KB
testcase_26 AC 109 ms
61,824 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, p, q = map(int, input().split())
a = sorted(list(map(int, input().split())))
cnt = [0] * p
for i in range(n):
  for j in range(i+1, n):
    cnt[(pow(7, a[i], p)+pow(5, a[j], p))%p] += 1
ans = 0
for i in range(n):
  for j in range(i+1, n):
    cnt[(pow(7, a[i], p)+pow(5, a[j], p))%p] -= 1
  for j in range(0, i):
    ans += cnt[(q-pow(10, a[j], p)-pow(9, a[i], p))%p]
print(ans)
0