結果
問題 | No.1286 Stone Skipping |
ユーザー |
|
提出日時 | 2020-11-13 22:24:46 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 771 bytes |
コンパイル時間 | 620 ms |
コンパイル使用メモリ | 78,580 KB |
実行使用メモリ | 10,624 KB |
最終ジャッジ日時 | 2024-07-22 21:17:47 |
合計ジャッジ時間 | 5,573 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 21 TLE * 1 -- * 4 |
ソースコード
#include<iostream>#include<string>#include<iomanip>#include<cmath>#include<vector>#include<algorithm>#include<utility>using namespace std;#define int long long#define endl "\n"constexpr long long INF = (long long)1e18;constexpr long long MOD = 1'000'000'007;struct fast_io {fast_io(){std::cin.tie(nullptr);std::ios::sync_with_stdio(false);};} fio;int cal(int D){for(int i = D/2, j = 0; i <= D && j <= 100000000; i++, j++){int sum = 0;int x = i;while(x){sum += x;if(sum == D) return i;x /= 2;}}return D;}signed main(){cout<<fixed<<setprecision(10);int D;int ans = 0;cin>>D;cout<<cal(D)<<endl;return 0;}