結果
問題 |
No.1286 Stone Skipping
|
ユーザー |
![]() |
提出日時 | 2020-11-13 22:35:36 |
言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
結果 |
WA
|
実行時間 | - |
コード長 | 400 bytes |
コンパイル時間 | 138 ms |
コンパイル使用メモリ | 12,544 KB |
実行使用メモリ | 10,880 KB |
最終ジャッジ日時 | 2024-07-22 21:34:13 |
合計ジャッジ時間 | 3,825 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 24 WA * 2 |
ソースコード
D=int(input()) L=D//2 R=D while L!=R: now=(L+R)//2 count=0 while count<D and now>0: count+=now now//=2 if count>=D: R=(L+R)//2 else: L=(L+R)//2+1 ok=0 for _ in range(10**5): count=0 now=L while count<D: count+=now now//=2 if count==D: ok=1 break L+=1 print(L if ok else D)