結果

問題 No.2709 1975 Powers
ユーザー pitPpitP
提出日時 2024-03-31 13:48:55
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 443 bytes
コンパイル時間 284 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 64,128 KB
最終ジャッジ日時 2024-09-30 18:26:26
合計ジャッジ時間 2,627 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
51,968 KB
testcase_01 AC 37 ms
52,096 KB
testcase_02 AC 44 ms
60,928 KB
testcase_03 AC 59 ms
61,824 KB
testcase_04 AC 71 ms
62,080 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 38 ms
52,224 KB
testcase_08 AC 57 ms
62,720 KB
testcase_09 WA -
testcase_10 AC 37 ms
52,480 KB
testcase_11 WA -
testcase_12 AC 52 ms
62,720 KB
testcase_13 AC 73 ms
63,744 KB
testcase_14 AC 51 ms
60,928 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 AC 45 ms
60,928 KB
testcase_18 AC 50 ms
61,952 KB
testcase_19 WA -
testcase_20 AC 51 ms
62,592 KB
testcase_21 AC 58 ms
62,720 KB
testcase_22 AC 62 ms
62,208 KB
testcase_23 AC 83 ms
63,488 KB
testcase_24 AC 80 ms
64,000 KB
testcase_25 AC 73 ms
62,208 KB
testcase_26 AC 76 ms
62,336 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

base = [10, 9, 7, 5]
g = [[pow(base[c], A[i], P) for i in range(N)] for c in range(4)]

st = set()
st.add(g[0][0])
ans = 0
for b in range(1, N):
    for c in range(b + 1, N):
        for d in range(c + 1, N):
            Y = (g[1][b] + g[2][c] + g[3][d]) % P
            if (Q - Y) % P in st:
                ans += 1

    st.add(g[0][b])

# print(g)
print(ans)
0