結果

問題 No.2709 1975 Powers
ユーザー ku_senjanku_senjan
提出日時 2024-03-31 13:55:40
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,473 bytes
コンパイル時間 2,041 ms
コンパイル使用メモリ 208,096 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-09-30 18:38:27
合計ジャッジ時間 3,617 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

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);

	vector<modint> pow10(N), pow9(N), pow7(N), pow5(N);
	rep(i,0,N){
		pow10[i] = modint(10).pow(A[i]);
		pow9[i] = modint(9).pow(A[i]);
		pow7[i] = modint(7).pow(A[i]);
		pow5[i] = modint(5).pow(A[i]);
	}

	modint q = modint(Q);

	int ans = 0;
	rep(i,0,N) rep(j,i+1,N) rep(k,j+1,N) rep(l,k+1,N){
		modint a = pow10[i], b = pow9[j], c = pow7[k], d = pow5[l];
		if(a+b+c+d==q) ans++;
	}
	cout << ans << endl;
}
0