結果
| 問題 | No.1286 Stone Skipping |
| コンテスト | |
| ユーザー |
emthrm
|
| 提出日時 | 2020-11-13 21:38:18 |
| 言語 | C++17 (gcc 15.2.0 + boost 1.89.0) |
| 結果 |
TLE
|
| 実行時間 | - |
| コード長 | 1,323 bytes |
| 記録 | |
| コンパイル時間 | 1,213 ms |
| コンパイル使用メモリ | 209,280 KB |
| 実行使用メモリ | 6,400 KB |
| 最終ジャッジ日時 | 2026-06-15 02:34:40 |
| 合計ジャッジ時間 | 6,105 ms |
|
ジャッジサーバーID (参考情報) |
judge2_1 / judge3_1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 21 TLE * 1 -- * 4 |
ソースコード
#define _USE_MATH_DEFINES
#include <bits/stdc++.h>
using namespace std;
#define FOR(i,m,n) for(int i=(m);i<(n);++i)
#define REP(i,n) FOR(i,0,n)
#define ALL(v) (v).begin(),(v).end()
using ll = long long;
constexpr int INF = 0x3f3f3f3f;
constexpr long long LINF = 0x3f3f3f3f3f3f3f3fLL;
constexpr double EPS = 1e-8;
constexpr int MOD = 1000000007;
// constexpr int MOD = 998244353;
constexpr int dy[] = {1, 0, -1, 0}, dx[] = {0, -1, 0, 1};
constexpr int dy8[] = {1, 1, 0, -1, -1, -1, 0, 1}, dx8[] = {0, -1, -1, -1, 0, 1, 1, 1};
template <typename T, typename U> inline bool chmax(T &a, U b) { return a < b ? (a = b, true) : false; }
template <typename T, typename U> inline bool chmin(T &a, U b) { return a > b ? (a = b, true) : false; }
struct IOSetup {
IOSetup() {
std::cin.tie(nullptr);
std::ios_base::sync_with_stdio(false);
std::cout << fixed << setprecision(20);
}
} iosetup;
int main() {
ll d; cin >> d;
ll lb = 1, ub = 500000000000000014;
while (ub - lb > 1) {
ll mid = (lb + ub) >> 1, x = 0, tmp = mid;
while (tmp > 0) {
x += tmp;
tmp >>= 1;
}
(x <= d ? lb : ub) = mid;
}
while (true) {
ll x = 0, tmp = lb;
while (tmp > 0) {
x += tmp;
tmp >>= 1;
if (x == d) {
cout << lb << '\n';
return 0;
}
}
++lb;
}
}
emthrm