結果
問題 | No.1027 U+1F4A0 |
ユーザー | hagitaku4 |
提出日時 | 2020-04-27 15:08:42 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 2,506 bytes |
コンパイル時間 | 2,517 ms |
コンパイル使用メモリ | 200,564 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-11-21 18:06:23 |
合計ジャッジ時間 | 2,912 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | WA | - |
testcase_02 | AC | 2 ms
5,248 KB |
testcase_03 | AC | 2 ms
5,248 KB |
testcase_04 | AC | 1 ms
5,248 KB |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | AC | 1 ms
5,248 KB |
testcase_09 | AC | 1 ms
5,248 KB |
testcase_10 | AC | 2 ms
5,248 KB |
testcase_11 | AC | 2 ms
5,248 KB |
testcase_12 | AC | 2 ms
5,248 KB |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | AC | 2 ms
5,248 KB |
testcase_23 | WA | - |
ソースコード
#include<bits/stdc++.h> #define lint long long int #define rep(i,n) for(int i=0;i<int(n);i++) #define per(i,n) for(int i=n-1;i>=0;i--) #define arep(i,a,n) for(int i=a;i<n;i++) #define sort(a) sort(a.begin(),a.end()) #define reverse(a) reverse(a.begin(),a.end()) #define fill(a,x) fill(a.begin(),a.end(),x) #define eb(data) emplace_back(data) #define pb(data) emplace_back(data) #define mp make_pair #define ALNUM 26 #define vint vector<int> #define F first #define S second #define ALL(data) data.begin(),data.end() using namespace std; template<typename Rast>inline void out(Rast rast){cout<<rast<<"\n";return;} template<typename Rast>inline void in(Rast& rast){cin>>rast;return;} template<typename T>istream& operator >> (istream& is, vector<T>& vec){for(T& x: vec) is >> x;return is;} template<typename First, typename... Rest>void in(First& first, Rest&... rest){cin >> first;in(rest...);return;} template<typename First, typename... Rest>void out(First first, Rest... rest){cout << first<<" ";out(rest...);return;} template<typename T>T gcd( T a,T b){if(b==0)return a;return gcd(b,a%b);} template<typename T1,typename T2>bool chmax(T1& a,T2 b){if(a<b){a=b;return true;}else{return false;}} template<typename T1,typename T2>bool chmin(T1& a,T2 b){if(a>b){a=b;return true;}else{return false;}} template<typename T>T lcm(T a, T b){return a * b / gcd(a, b);} static const double pi = 3.141592653589793; lint power(lint N, lint P, lint M){if(P==0) return 1;if(P%2==0){lint t = power(N, P/2, M);return t*t % M;}return N * power(N, P-1, M);} lint MOD=pow(10,9)+7; //lint MOD=998244353; lint inf=pow(2,50); int intinf=pow(2,30); /**/int dirx[]={1,0};int diry[]={0,1};//*///右、下 /**int dirx[]={0,1,0,-1};int diry[]={-1,0,1,0};//*///四方位 /**int dirx[]={-1,0,1,1,1,0,-1,-1};int diry[]={-1,-1,-1,0,1,1,1,0};//*///八方位 class unionfind{ public: vector<int> table; vector<int> wod; void init(int size){ table.resize(size); wod.resize(size); rep(i,size)table[i]=i,wod[i]=i; }; int root(int index){ if(table[index]==index)return index; else{ int hoge=root(table[index]); table[index]=hoge; return hoge; } }; bool same(int x,int y){ return(root(x)==root(y)); }; int marge(int x,int y){ int yroot=root(y); int xroot=root(x); if(xroot==yroot)return 0; table[yroot]=xroot; return 0; } }; int main(){ cin.tie(0);ios::sync_with_stdio(false);cout<<std::fixed<<std::setprecision(12); int x,y; in(x,y); if(x==y)out(4); if(x<y)out(8); else out(0); return 0; }