結果

問題 No.1176 少ない質問
ユーザー toshiro_yanagitoshiro_yanagi
提出日時 2023-07-08 15:56:04
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 22 ms / 1,000 ms
コード長 444 bytes
コンパイル時間 919 ms
コンパイル使用メモリ 10,688 KB
実行使用メモリ 8,700 KB
最終ジャッジ日時 2023-09-29 17:15:43
合計ジャッジ時間 2,084 ms
ジャッジサーバーID
(参考情報)
judge13 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 21 ms
8,508 KB
testcase_01 AC 21 ms
8,600 KB
testcase_02 AC 21 ms
8,684 KB
testcase_03 AC 21 ms
8,624 KB
testcase_04 AC 21 ms
8,600 KB
testcase_05 AC 21 ms
8,508 KB
testcase_06 AC 21 ms
8,604 KB
testcase_07 AC 20 ms
8,452 KB
testcase_08 AC 21 ms
8,500 KB
testcase_09 AC 21 ms
8,500 KB
testcase_10 AC 21 ms
8,472 KB
testcase_11 AC 21 ms
8,668 KB
testcase_12 AC 21 ms
8,572 KB
testcase_13 AC 20 ms
8,496 KB
testcase_14 AC 21 ms
8,504 KB
testcase_15 AC 21 ms
8,500 KB
testcase_16 AC 21 ms
8,616 KB
testcase_17 AC 22 ms
8,452 KB
testcase_18 AC 21 ms
8,700 KB
testcase_19 AC 21 ms
8,688 KB
testcase_20 AC 18 ms
8,596 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from sys import maxsize
from collections import deque


a = int(input())

n, m = 2, 1
while n**m < a:
    m += 1

q = deque()
q.append((n, m))

visited = set()
ans = maxsize
if a == 5:
    ans = 5

while len(q) > 0:
    n, m = q.popleft()
    if n**m >= a and (n, m) not in visited:
        visited.add((n, m))
        ans = min(ans, n * m)
        q.append((n + 1, m - 1))
        q.append((n, m - 1))
        q.append((n - 1, m))

print(ans)
0