結果
問題 | No.2709 1975 Powers |
ユーザー | KKT89 |
提出日時 | 2024-03-31 13:46:29 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 180 ms / 2,000 ms |
コード長 | 1,264 bytes |
コンパイル時間 | 2,844 ms |
コンパイル使用メモリ | 219,212 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-09-30 18:23:09 |
合計ジャッジ時間 | 5,014 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,248 KB |
testcase_02 | AC | 2 ms
5,248 KB |
testcase_03 | AC | 91 ms
5,248 KB |
testcase_04 | AC | 151 ms
5,248 KB |
testcase_05 | AC | 102 ms
5,248 KB |
testcase_06 | AC | 33 ms
5,248 KB |
testcase_07 | AC | 1 ms
5,248 KB |
testcase_08 | AC | 30 ms
5,248 KB |
testcase_09 | AC | 101 ms
5,248 KB |
testcase_10 | AC | 1 ms
5,248 KB |
testcase_11 | AC | 5 ms
5,248 KB |
testcase_12 | AC | 10 ms
5,248 KB |
testcase_13 | AC | 106 ms
5,248 KB |
testcase_14 | AC | 15 ms
5,248 KB |
testcase_15 | AC | 18 ms
5,248 KB |
testcase_16 | AC | 80 ms
5,248 KB |
testcase_17 | AC | 2 ms
5,248 KB |
testcase_18 | AC | 11 ms
5,248 KB |
testcase_19 | AC | 151 ms
5,248 KB |
testcase_20 | AC | 3 ms
5,248 KB |
testcase_21 | AC | 30 ms
5,248 KB |
testcase_22 | AC | 179 ms
5,248 KB |
testcase_23 | AC | 178 ms
5,248 KB |
testcase_24 | AC | 176 ms
5,248 KB |
testcase_25 | AC | 176 ms
5,248 KB |
testcase_26 | AC | 180 ms
5,248 KB |
ソースコード
#pragma GCC optimize("Ofast") #include <bits/stdc++.h> using namespace std; typedef long long int ll; typedef unsigned long long int ull; mt19937_64 rng(chrono::steady_clock::now().time_since_epoch().count()); ll myRand(ll B) { return (ull)rng() % B; } long long modpow(long long a, long long n, long long mod) { long long res = 1; while (n > 0) { if (n & 1) res = res * a % mod; a = a * a % mod; n >>= 1; } return res; } int main() { ios::sync_with_stdio(false); cin.tie(nullptr); int n,p,q; cin >> n >> p >> q; vector<int> a(n); for (int i = 0; i < n; ++i) { cin >> a[i]; } vector<int> pp = {10, 9, 7, 5}; vector<vector<int>> v(4, vector<int>(n)); sort(a.begin(), a.end()); for (int i = 0; i < 4; ++i) { for (int j = 0; j < n; ++j) { v[i][j] = modpow(pp[i], a[j], p); } } ll res = 0; for (int i = 0; i < n; ++i) { for (int j = i+1; j < n; ++j) { for (int k = j+1; k < n; ++k) { for (int l = k+1; l < n; ++l) { int u = (v[0][i] + v[1][j] + v[2][k] + v[3][l]) % p; res += (u == q); } } } } cout << res << endl; }