結果
問題 | No.998 Four Integers |
ユーザー | brightcat_coder |
提出日時 | 2020-02-28 21:29:17 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 3,510 bytes |
コンパイル時間 | 1,727 ms |
コンパイル使用メモリ | 175,188 KB |
実行使用メモリ | 6,824 KB |
最終ジャッジ日時 | 2024-10-13 16:47:45 |
合計ジャッジ時間 | 2,481 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,820 KB |
testcase_01 | AC | 2 ms
6,820 KB |
testcase_02 | AC | 2 ms
6,816 KB |
testcase_03 | AC | 2 ms
6,816 KB |
testcase_04 | AC | 2 ms
6,816 KB |
testcase_05 | AC | 2 ms
6,820 KB |
testcase_06 | AC | 2 ms
6,816 KB |
testcase_07 | AC | 2 ms
6,816 KB |
testcase_08 | AC | 2 ms
6,820 KB |
testcase_09 | AC | 1 ms
6,816 KB |
testcase_10 | AC | 2 ms
6,816 KB |
testcase_11 | AC | 2 ms
6,820 KB |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | AC | 2 ms
6,816 KB |
testcase_18 | AC | 2 ms
6,816 KB |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | AC | 2 ms
6,816 KB |
testcase_22 | AC | 1 ms
6,820 KB |
testcase_23 | AC | 1 ms
6,816 KB |
testcase_24 | WA | - |
ソースコード
#include<bits/stdc++.h> #include<cmath> #pragma GCC optimize("Ofast") using namespace std; #define all(x) (x).begin(),(x).end() #define rall(x) (x).rbegin(),(x).rend() typedef long long ll; const ll MOD = 1e9+7; #define rep(i,n) for(ll i=0, i##_len=(n); i<i##_len; ++i) #define REP(i,num,n) for(ll i=num, i##_len=(n); i<i##_len; ++i) template<class T>bool chmax(T &a, const T &b) { if (a<b) { a=b; return 1; } return 0; } template<class T>bool chmin(T &a, const T &b) { if (b<a) { a=b; return 1; } return 0; } template<class T> inline void add(T &a, T b){a = ((a+b) % MOD + MOD) % MOD;}; #define print(x) (cout << (x) << endl) #define pb push_back #define mp make_pair #define sz(x) int(x.size()) #define fs first #define sc second const int INF = 1e9; const ll LLINF = 1e16; template<typename T> vector<T> make_v(size_t a){return vector<T>(a);} template<typename T,typename... Ts> auto make_v(size_t a,Ts... ts){ return vector<decltype(make_v<T>(ts...))>(a,make_v<T>(ts...)); } template<typename T,typename U,typename... V> typename enable_if<is_same<T, U>::value!=0>::type fill_v(U &u,const V... v){u=U(v...);} template<typename T,typename U,typename... V> typename enable_if<is_same<T, U>::value==0>::type fill_v(U &u,const V... v){ for(auto &e:u) fill_v<T>(e,v...); } template<typename T> T gcd(T a,T b){return b?gcd(b,a%b):a;} template<typename T> T ngcd(vector<T> a){ T res; res = a[0]; for(int i = 1; i < a.size() && res != 1; i++) { res = gcd(a[i], res); } return res; } template<typename T> T lcm(T a, T b) { return a / gcd(a, b) * b; } template<typename T> T nlcm(vector<T> numbers) { T res; res = numbers[0]; for (int i = 1; i < numbers.size(); i++) { res = lcm(res, numbers[i]); } return res; } // 割り算の切り上げ処理 template<typename T> T round_up(T a, T b) { return (a + b - 1) / b; } // 約数列挙 template<typename T> vector<T> calc_divisor(T n) { vector<T> res; for (T i = 1LL; i*i <= n; ++i) { if (n % i == 0) { res.push_back(i); T j = n / i; if (j != i) res.push_back(j); } } sort(res.begin(), res.end()); return res; } // 素数判定 template<typename T> bool isPrime(T x){ T i; if(x < 2)return 0; else if(x == 2) return 1; if(x%2 == 0) return 0; for(i = 3; i*i <= x; i += 2) if(x%i == 0) return 0; return 1; } // 桁和 template<typename T> T digsum(T n) { T res = 0; while(n > 0) { res += n%10; n /= 10; } return res; } // 指定した文字cが文字列に何文字入ってるか ll stringcount(string s, char c) { return count(s.cbegin(), s.cend(), c); } using pint = pair<int, int>; using pll = pair<ll, ll>; const int dx[8] = {1, 0, -1, 0, 1, -1, -1, 1}; const int dy[8] = {0, 1, 0, -1, 1, -1, 1, -1}; int main(void) { cout.tie(0); cin.tie(0); ios::sync_with_stdio(false); cout << fixed << setprecision(10); //auto dp=make_v<int>(4,h,w); //fill_v(dp,0); //map<string, int> mp; /* rep(i,n){ mp[s[i]]++; } for(auto x : mp){ chmax(MAX, x.sc); } for(auto x : mp){ if(MAX == x.sc){ cout<<x.fs<<endl; } } */ vector<int> a(4); cin >> a[0] >> a[1] >> a[2] >> a[3]; sort(all(a)); rep(i,4){ if(a[i] != i + 1){ print("No"); return 0; } } print("Yes"); }