結果

問題 No.2709 1975 Powers
ユーザー GOTKAKOGOTKAKO
提出日時 2024-03-31 15:20:31
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 718 ms / 2,000 ms
コード長 957 bytes
コンパイル時間 2,378 ms
コンパイル使用メモリ 211,464 KB
実行使用メモリ 82,176 KB
最終ジャッジ日時 2024-09-30 20:34:46
合計ジャッジ時間 11,405 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
6,816 KB
testcase_01 AC 3 ms
6,816 KB
testcase_02 AC 32 ms
26,368 KB
testcase_03 AC 356 ms
69,888 KB
testcase_04 AC 621 ms
78,848 KB
testcase_05 AC 441 ms
71,808 KB
testcase_06 AC 200 ms
54,528 KB
testcase_07 AC 8 ms
10,624 KB
testcase_08 AC 207 ms
53,376 KB
testcase_09 AC 471 ms
71,936 KB
testcase_10 AC 8 ms
11,008 KB
testcase_11 AC 47 ms
31,104 KB
testcase_12 AC 82 ms
39,296 KB
testcase_13 AC 498 ms
72,576 KB
testcase_14 AC 127 ms
45,568 KB
testcase_15 AC 150 ms
47,104 KB
testcase_16 AC 424 ms
67,840 KB
testcase_17 AC 16 ms
17,792 KB
testcase_18 AC 109 ms
41,600 KB
testcase_19 AC 656 ms
78,464 KB
testcase_20 AC 28 ms
23,552 KB
testcase_21 AC 199 ms
52,992 KB
testcase_22 AC 579 ms
82,048 KB
testcase_23 AC 690 ms
82,048 KB
testcase_24 AC 656 ms
82,176 KB
testcase_25 AC 718 ms
82,048 KB
testcase_26 AC 609 ms
82,048 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

long long repeat2(long long a, long long b,long long mod){
    long long p = a%mod,ret = 1;
    while(b){
        if(b&1) ret = ret*p %mod;
        p = p*p %mod; b >>= 1;
    }
    return ret;
}

int main() {
    int N,P,Q; cin >> N >> P >> Q;
    vector<int> A(N);
    for(auto &a : A) cin >> a;
    sort(A.begin(),A.end());

    vector<vector<int>> Rmod(N);
    vector<int> add(100000);
    for(int i=N-1; i>=0; i--) add.at(repeat2(5,A.at(i),P))++,Rmod.at(i) = add;
    
    long long answer = 0;
    for(int i=0; i<N-3; i++){
        long long a = repeat2(10,A.at(i),P);
        for(int k=i+1; k<N-2; k++){
            long long b = repeat2(9,A.at(k),P);
            for(int l=k+1; l<N-1; l++){
                long long c = repeat2(7,A.at(l),P);
                long long goal = (Q-(a+b+c)%P+P)%P;
                answer += Rmod.at(l+1).at(goal);
            }
        }
    }
    cout << answer << endl;
}
0