結果

問題 No.2709 1975 Powers
ユーザー rlangevinrlangevin
提出日時 2024-04-01 21:50:29
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,959 ms / 2,000 ms
コード長 388 bytes
コンパイル時間 544 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 66,944 KB
最終ジャッジ日時 2024-09-30 22:20:46
合計ジャッジ時間 24,418 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
53,424 KB
testcase_01 AC 41 ms
52,900 KB
testcase_02 AC 97 ms
63,260 KB
testcase_03 AC 1,171 ms
64,796 KB
testcase_04 AC 1,717 ms
64,132 KB
testcase_05 AC 1,312 ms
66,440 KB
testcase_06 AC 552 ms
64,540 KB
testcase_07 AC 43 ms
54,056 KB
testcase_08 AC 536 ms
66,944 KB
testcase_09 AC 1,328 ms
66,196 KB
testcase_10 AC 44 ms
53,508 KB
testcase_11 AC 135 ms
64,872 KB
testcase_12 AC 236 ms
64,932 KB
testcase_13 AC 1,338 ms
66,292 KB
testcase_14 AC 332 ms
62,840 KB
testcase_15 AC 384 ms
66,488 KB
testcase_16 AC 1,092 ms
66,020 KB
testcase_17 AC 62 ms
63,032 KB
testcase_18 AC 272 ms
64,908 KB
testcase_19 AC 1,724 ms
66,404 KB
testcase_20 AC 88 ms
64,700 KB
testcase_21 AC 534 ms
66,248 KB
testcase_22 AC 1,905 ms
64,244 KB
testcase_23 AC 1,943 ms
66,472 KB
testcase_24 AC 1,935 ms
66,064 KB
testcase_25 AC 1,959 ms
64,696 KB
testcase_26 AC 1,944 ms
65,556 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, P, Q = map(int, input().split())
C = [0] * P
A = list(map(int, input().split()))
A.sort()
ans = 0
for c in range(N - 1, -1, -1):
    for b in range(c - 1, -1, -1):
        for a in range(b - 1, -1, -1):
            now = pow(10, A[a], P) + pow(9, A[b], P) + pow(7, A[c], P)
            now %= P
            ans += C[(Q-now) % P]
            
    C[pow(5, A[c], P)] += 1
    
print(ans)
0