結果
問題 | No.1286 Stone Skipping |
ユーザー | O2MT |
提出日時 | 2020-11-18 00:29:28 |
言語 | PyPy3 (7.3.15) |
結果 |
TLE
|
実行時間 | - |
コード長 | 443 bytes |
コンパイル時間 | 285 ms |
コンパイル使用メモリ | 82,316 KB |
実行使用メモリ | 82,648 KB |
最終ジャッジ日時 | 2024-07-23 08:35:21 |
合計ジャッジ時間 | 3,938 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 41 ms
66,744 KB |
testcase_01 | AC | 42 ms
59,036 KB |
testcase_02 | TLE | - |
testcase_03 | -- | - |
testcase_04 | -- | - |
testcase_05 | -- | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
ソースコード
D = int(input()) K = 64 ans = D for k in range(1,K+1): high = D low = 1 while abs(high - low) > 1: mid = (high-low) dist = 0 x = mid for n in range(k): dist += x x //= 2 if dist >= D: high = mid else: low = mid v = 0 x = high for i in range(k): v += x x //= 2 if (v == D): ans = high print(ans)