結果

問題 No.1027 U+1F4A0
ユーザー imoni_kawaii
提出日時 2020-06-13 12:23:31
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 4 ms / 2,000 ms
コード長 826 bytes
コンパイル時間 3,390 ms
コンパイル使用メモリ 191,064 KB
最終ジャッジ日時 2025-01-11 03:40:41
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 22
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#ifdef _DEBUG
#include "debug.hpp"
#else
#define debug(...)
#endif
#define REP(i, m, n) for(int i = (int)(m); i < (int)(n); ++i)
#define rep(i, n) REP(i, 0, n)
using namespace std;
using ll = long long; using ld = long double; using pll = pair<ll, ll>;
const int INF = 1<<30; const ll LINF = 1LL<<60; const ld PI = 3.1415926535897932;
template<class T, class U> inline bool chmax(T &a, const U &b) { if(a < b) { a = b; return true; } return false; }
template<class T, class U> inline bool chmin(T &a, const U &b) { if(a > b) { a = b; return true; } return false; }



signed main() {
  cin.tie(0); ios::sync_with_stdio(false);
  ld d1, d2;
  cin >> d1 >> d2;
  if(d1 == d2 || d2 == 2.0*d1) cout << 4 << '\n';
  else if(d2 < 2.0*d1 && d1 < d2) cout << 8 << '\n';
  else cout << 0 << '\n';
  return 0;
}
0