結果

問題 No.2709 1975 Powers
ユーザー うえこうえこ
提出日時 2024-03-31 13:45:03
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 976 bytes
コンパイル時間 1,554 ms
コンパイル使用メモリ 172,628 KB
実行使用メモリ 10,496 KB
最終ジャッジ日時 2024-09-30 18:20:15
合計ジャッジ時間 5,574 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
10,496 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 572 ms
5,248 KB
testcase_03 TLE -
testcase_04 -- -
testcase_05 -- -
testcase_06 -- -
testcase_07 -- -
testcase_08 -- -
testcase_09 -- -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using ll=long long;
const long long INF=1LL<<60;
ll h,w;
long long power(long long a, long long n, ll m) {
    long long res = 1;
    while (n > 0) {
        if (n%2==1){
          res = res * a % m;
          n-=1;
        }
        a = a * a % m;
        n/=2;
    }
    return res;
}
int main(){
    ll n,p,q;
    std::cin >> n >> p >> q;
    std::vector<ll>A(n);
    for(auto&a:A)std::cin >> a;
    std::sort(A.begin(),A.end());
    ll ans=0;
    for(int i=0;i<n-3;++i){
        for(int j=i+1;j<n-2;++j){
            for(int k=j+1;k<n-1;++k){
                for(int m=k+1;m<n;++m){
                    ll val=power(10, A[i], p);
                    val+=power(9, A[j], p);val%=p;
                    val+=power(7, A[k], p);val%=p;
                    val+=power(5, A[m], p);val%=p;
                    if(val==q){
                        ++ans;
                    }
                }
            }
        }
    }
    std::cout << ans << '\n';
}
0