結果

問題 No.2709 1975 Powers
ユーザー ku_senjanku_senjan
提出日時 2024-03-31 13:51:52
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 1,313 bytes
コンパイル時間 2,165 ms
コンパイル使用メモリ 207,244 KB
実行使用メモリ 10,016 KB
最終ジャッジ日時 2024-09-30 18:31:10
合計ジャッジ時間 5,957 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
9,892 KB
testcase_01 AC 2 ms
6,816 KB
testcase_02 AC 190 ms
6,820 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 namespace std;
using ll=long long;
using ld=long double;
template<class T> using graph=vector<vector<T>>;
template<class T> using min_priority_queue=priority_queue<T,vector<T>,greater<T>>;
constexpr int INF32=INT_MAX/2;
constexpr ll INF64=1LL<<60;
constexpr array<int,4> DX4={0,1,0,-1};
constexpr array<int,4> DY4={-1,0,1,0};
constexpr array<int,8> DX8={0,1,1,1,0,-1,-1,-1};
constexpr array<int,8> DY8={-1,-1,0,1,1,1,0,-1};
inline int popcnt(ll n){return __builtin_popcountll(n);}
template<class T> inline bool chmax(T& a,const T& b){return a<b?a=b,true:false;}
template<class T> inline bool chmin(T& a,const T& b){return b<a?a=b,true:false;}
#define rep(i,s,n) for(ll i=(ll)(s);i<(ll)(n);i++)
#define rrep(i,s,n) for(ll i=(ll)(s);i>=(ll)(n);i--)
void _main();
int main(){
	cin.tie(nullptr);
	ios_base::sync_with_stdio(false);
	cout<<fixed<<setprecision(16);
	_main();
}

#include <atcoder/modint>
using atcoder::modint;

void _main(){
	int N, P, Q; cin >> N >> P >> Q;
	vector<ll> A(N); rep(i,0,N) cin >> A[i];

	modint::set_mod(P);

	int ans = 0;
	rep(i,0,N) rep(j,i+1,N) rep(k,j+1,N) rep(l,k+1,N){
		ll a = A[i], b = A[j], c = A[k], d = A[l];
		if(modint(10).pow(a) + modint(9).pow(b) + modint(7).pow(c) + modint(5).pow(d) == modint(Q)){
			ans++;
		}
	}
	cout << ans << endl;
}
0