結果
問題 | No.1904 Never giving up! |
ユーザー | llc5pg |
提出日時 | 2022-04-15 22:26:15 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 3,861 bytes |
コンパイル時間 | 2,292 ms |
コンパイル使用メモリ | 199,908 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-06-07 03:27:08 |
合計ジャッジ時間 | 2,858 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | AC | 2 ms
5,376 KB |
testcase_04 | WA | - |
testcase_05 | AC | 2 ms
5,376 KB |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
ソースコード
#include <bits/stdc++.h> using namespace std; using ll = long long; //#include <atcoder/modint> //using namespace atcoder; //using mint = modint998244353; #pragma GCC target ("avx2") #pragma GCC optimization ("O3") const int MOD = (1e9+7); void printmat(const vector<vector<int>>& mat) { for (auto row : mat) { for (auto elem : row) cout << elem << " "; cout << "\n"; } } void printdq(const deque<char>& v) { for (auto elem : v) cout << elem << " "; cout << endl; } void printv(const vector<int>& v) { for (auto elem : v) cout << elem << " "; cout << "\n"; } void printvll(const vector<ll>& v) { for (auto elem : v) cout << elem << " "; cout << endl; } void printd(const deque<int>& v) { for (auto elem : v) cout << elem << " "; cout << endl; } void printvp(const vector<pair<int,int>>& vp) { for (auto pr : vp) { cout << pr.first << ", " << pr.second; cout << endl; } } void printvs(const vector<set<int>>& vs) { for (auto row : vs) { for (auto elem : row) cout << elem << ", "; cout << endl; } } void printht(const unordered_map<int, int>& ht) { for (auto elem : ht) cout << elem.first << " : " << elem.second << endl; } void printmp(const map<int, int>& ht) { for (auto elem : ht) cout << elem.first << " : " << elem.second << endl; } void printst(const set<int>& st) { for (auto elem : st) cout << elem << " "; cout << endl; } bool isPrime(long long n) { if (n <= 1) return false; if (n <= 3) return true; if (n % 2 == 0 || n % 3 == 0) return false; for (long long i = 5; i * i <= n; i = i + 6) if (n % i == 0 || n % (i + 2) == 0) return false; return true; } map<long long, long long> primeFactors(long long n) { map<long long, long long> ans; while (n % 2 == 0) { ans[2]++; n = n/2; } for (long long i = 3; i*i <= (n); i = i + 2) { while (n % i == 0) { ans[i]++; n = n/i; } } if (n > 2) ans[n]++; return ans; } int find_f(const vector<int>& uf, int i) { while (uf[i]!=i) i = uf[i]; return i; } void union_f(vector<int>& uf, vector<int>& sz, int a, int b) { a = find_f(uf, a); b = find_f(uf, b); //cout << "a, b = " << a << ", " << b << endl; if (a==b) return; if (sz[a] < sz[b]) { //cout << "sz[a], sz[b] = " << sz[a] << ", " << sz[b] << endl; //cout << "a, b = " << a << ", " << b << endl; swap(a,b); //cout << "a, b = " << a << ", " << b << endl; } sz[a] += sz[b]; uf[b] = a; } long long modexp(long long b, long long e, long long M) { if (!e) return 1; b %= M; long long x = modexp(b * b % M, e / 2, M); if (e % 2) { return b * x % M; } else { return x; } } int main() { ios_base::sync_with_stdio(false); cin.tie(NULL); int T=1, caseIdx=0; //cin >> T; while (T--) { caseIdx++; ll n, x=1; cin >> n; vector<ll> v(n), w(n); map<int,int> mp; for (int i=0; i<n; i++) cin >> v[i]; sort(v.begin(), v.end()); for (int i=0; i<n; i++) { if (i-1>=0 && v[i]==v[i-1]) w[i] = w[i-1]; else if (v[i]>i+1) w[i] = i+1; else w[i] = v[i]; } //printvll(w); for (int i=0; i<n; i++) { mp[w[i]]++; } for (auto it=mp.begin(); it!=mp.end(); it++) { if (it->second>1) continue; x *= it->first; } cout << x << "\n"; //cout << "Case #" << caseIdx << ": " << ans << "\n"; } }