結果
問題 | No.1010 折って重ねて |
ユーザー | petite_prog |
提出日時 | 2020-04-14 01:55:16 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 2,284 bytes |
コンパイル時間 | 1,487 ms |
コンパイル使用メモリ | 169,688 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-10-01 08:08:37 |
合計ジャッジ時間 | 2,768 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,816 KB |
testcase_01 | AC | 2 ms
6,820 KB |
testcase_02 | AC | 2 ms
6,824 KB |
testcase_03 | AC | 2 ms
6,816 KB |
testcase_04 | AC | 2 ms
6,820 KB |
testcase_05 | AC | 2 ms
6,824 KB |
testcase_06 | AC | 2 ms
6,816 KB |
testcase_07 | WA | - |
testcase_08 | AC | 2 ms
6,816 KB |
testcase_09 | WA | - |
testcase_10 | AC | 2 ms
6,816 KB |
testcase_11 | AC | 1 ms
6,820 KB |
testcase_12 | AC | 2 ms
6,816 KB |
testcase_13 | AC | 2 ms
6,816 KB |
testcase_14 | AC | 1 ms
6,820 KB |
testcase_15 | AC | 1 ms
6,816 KB |
testcase_16 | AC | 2 ms
6,816 KB |
testcase_17 | AC | 2 ms
6,816 KB |
testcase_18 | AC | 1 ms
6,816 KB |
testcase_19 | AC | 2 ms
6,820 KB |
testcase_20 | AC | 2 ms
6,820 KB |
testcase_21 | AC | 1 ms
6,816 KB |
testcase_22 | WA | - |
testcase_23 | AC | 1 ms
6,820 KB |
testcase_24 | AC | 2 ms
6,820 KB |
testcase_25 | AC | 2 ms
6,820 KB |
testcase_26 | AC | 2 ms
6,820 KB |
testcase_27 | AC | 1 ms
6,816 KB |
testcase_28 | AC | 1 ms
6,820 KB |
testcase_29 | AC | 1 ms
6,816 KB |
testcase_30 | AC | 2 ms
6,820 KB |
testcase_31 | AC | 1 ms
6,824 KB |
testcase_32 | AC | 2 ms
6,820 KB |
testcase_33 | AC | 2 ms
6,820 KB |
testcase_34 | AC | 1 ms
6,824 KB |
testcase_35 | AC | 1 ms
6,820 KB |
testcase_36 | AC | 2 ms
6,816 KB |
testcase_37 | AC | 2 ms
6,820 KB |
testcase_38 | WA | - |
testcase_39 | AC | 1 ms
6,820 KB |
testcase_40 | WA | - |
testcase_41 | AC | 2 ms
6,824 KB |
testcase_42 | AC | 1 ms
6,820 KB |
testcase_43 | AC | 2 ms
6,820 KB |
testcase_44 | AC | 2 ms
6,820 KB |
testcase_45 | WA | - |
ソースコード
/* ∫ ∫ ∫ ノヽ (_ ) (_ ) (______ ) ヽ(´・ω・)ノ | / UU */ #pragma region macro #include <bits/stdc++.h> typedef long long int64; using namespace std; using P = pair<int64, int64>; typedef vector<int> vi; const int MOD = (int)1e9 + 7; const int64 INF = 1LL << 62; const int inf = 1<<30; 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; } #define REP(i, n) for (int i = 0; i < (n); i++) #define FOR(i,s,n) for (int i = s; i < (n); i++) #define ALL(obj) (obj).begin(), (obj).end() //コンテナじゃないと使えない!! #define debug(x) cerr << #x << ": " << x << "\n"; #define mp make_pair #define bn '\n' template <typename T> ostream& operator<<(ostream& os, const vector<T> &V){ int N = V.size(); REP(i,N){ os << V[i]; if (i!=N-1) os << " "; } os << "\n"; return os; } template <typename T,typename S> ostream& operator<<(ostream& os, pair<T,S> const&P){ os << "("; os << P.first; os << " , "; os << P.second; os << ")"; return os; } template <typename T> ostream& operator<<(ostream& os, set<T> &S){ auto it=S.begin(); while(it!=S.end()){ os << *it; os << " "; it++; } os << "\n"; return os; } template <typename T> ostream& operator<<(ostream& os, deque<T> &q){ for(auto it=q.begin();it<q.end();it++){ os<<*it; os<<" "; } os<<endl; return os; } template <typename T,typename S> ostream& operator<<(ostream& os, map<T,S> const&M){ for(auto e:M){ os<<e; } os<<endl; return os; } vector<pair<int,int>> dxdy = {mp(0,1),mp(1,0),mp(-1,0),mp(0,-1)}; #pragma endregion //fixed<<setprecision(10)<<ans<<endl; bool f(int64& a,int64& b, int64& h){ if(b<=h) return false; if(h<a){ a /= 2; }else{ b /= 2; } h *= 2; if(a>b) swap(a,b); return true; } int main(){ cin.tie(nullptr); ios::sync_with_stdio(false); int64 a,b,h; cin >> a >> b >> h; a *= 1000; b *= 1000; int ans = 0; while(f(a,b,h)) ans++; cout << ans << bn; }