結果
問題 |
No.1176 少ない質問
|
ユーザー |
![]() |
提出日時 | 2020-08-21 22:20:59 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 107 bytes |
コンパイル時間 | 161 ms |
コンパイル使用メモリ | 82,292 KB |
実行使用メモリ | 53,460 KB |
最終ジャッジ日時 | 2024-10-15 05:50:41 |
合計ジャッジ時間 | 1,727 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 20 WA * 1 |
ソースコード
a = int(input()) i = 1 while pow(2, i) < a: i += 1 j = 1 while pow(3, j) < a: j += 1 print(min(2*i, 3*j))