結果
問題 | No.1027 U+1F4A0 |
ユーザー | penguinhum |
提出日時 | 2020-04-17 21:31:49 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 2 ms / 2,000 ms |
コード長 | 1,501 bytes |
コンパイル時間 | 2,086 ms |
コンパイル使用メモリ | 193,416 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-10-03 11:22:20 |
合計ジャッジ時間 | 2,864 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
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 | 2 ms
5,248 KB |
testcase_04 | AC | 2 ms
5,248 KB |
testcase_05 | AC | 2 ms
5,248 KB |
testcase_06 | AC | 2 ms
5,248 KB |
testcase_07 | AC | 2 ms
5,248 KB |
testcase_08 | AC | 2 ms
5,248 KB |
testcase_09 | AC | 2 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 | AC | 2 ms
5,248 KB |
testcase_14 | AC | 2 ms
5,248 KB |
testcase_15 | AC | 2 ms
5,248 KB |
testcase_16 | AC | 2 ms
5,248 KB |
testcase_17 | AC | 2 ms
5,248 KB |
testcase_18 | AC | 2 ms
5,248 KB |
testcase_19 | AC | 2 ms
5,248 KB |
testcase_20 | AC | 2 ms
5,248 KB |
testcase_21 | AC | 2 ms
5,248 KB |
testcase_22 | AC | 2 ms
5,248 KB |
testcase_23 | AC | 2 ms
5,248 KB |
ソースコード
#define _GLIBCXX_DEBUG//TLEの原因になるので注意!!!!!!!!!!! #include<cmath> #include <bits/stdc++.h> using ll = long long; using namespace std; vector<int> arr; stack<int> st; queue<int> qu; queue<pair<int,int> > qu2; priority_queue<int> pq; #define rep(i,n) for(int i=0; i<(int)(n); i++) #define rep2(i,n) for(int i=1; i<=(int)(n); i++) #define mins(x,y) x=min(x,y) #define maxs(x,y) x=max(x,y) typedef set<int> set_t; typedef set<string> set_g; typedef complex<double> xy_t; static const int NIL = -1; static const int INF = 1000000007; #define mp make_pair #define sz(x) int(x.sise()) #define mod 1000000007 #define reps(i,s,n) for(int i = s; i < n; i++) #define Rreps(i,n,e) for(int i = n - 1; i >= e; --i) #define Rrep(i,n) Rreps(i,n,0) deque<int> deq; #define fi first #define se second //#define int long long //cerrはコメントアウトしなくても通る//ただしTLEを引き起こすことがある //const ll MOD = 998244353; const ll MOD = (1e+9) + 7; //const ll INF = 1LL << 60; //typedef pair<ll,ll> P; typedef pair<int, int> P; bool chmx(int &a, int b) { if (b > a) { a = b; return true; } return false; } bool chmn(int &a, int b) { if (b < a) { a = b; return true; } return false; } int main(){ double d1,d2; cin >> d1>> d2; if(d2<d1){ cout<<0<<endl; }else if(d2==d1||d2/2==d1){ cout<<4<<endl; }else if(d2/2<d1){ cout<<8<<endl; }else{ cout<<0<<endl; } return 0; }