結果
問題 | No.1286 Stone Skipping |
ユーザー | 鴨志田卓 |
提出日時 | 2023-07-28 06:46:21 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 644 bytes |
コンパイル時間 | 2,015 ms |
コンパイル使用メモリ | 199,944 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-10-05 15:57:01 |
合計ジャッジ時間 | 3,113 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,248 KB |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | AC | 2 ms
5,248 KB |
testcase_19 | AC | 3 ms
5,248 KB |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | WA | - |
testcase_28 | WA | - |
ソースコード
#include <bits/stdc++.h> using namespace std; using i64 = long long; inline i64 lb(i64 x) {return x & (-x);} i64 check(i64 x, int k) { i64 sum = 0; while (k--) { sum += x; x /= 2; } return sum; } void solve() { i64 n, minx; cin >> n; minx = n; double d = 1.0; for(int i = 2; i <= 61; i ++) { d += 1.0 / i; i64 p = n / d; for(i64 x = p - 100; x <= p + 100; x ++) { if(check(x, i) == n) minx = min(minx, x); } } cout << minx << "\n"; } int main() { ios::sync_with_stdio(false); cin.tie(0); int T; T = 1; while(T --) solve(); }