結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 24 ms
8,708 KB
testcase_01 AC 25 ms
8,848 KB
testcase_02 AC 25 ms
8,748 KB
testcase_03 AC 24 ms
8,776 KB
testcase_04 AC 24 ms
8,780 KB
testcase_05 AC 24 ms
8,776 KB
testcase_06 AC 24 ms
8,780 KB
testcase_07 AC 24 ms
8,724 KB
testcase_08 AC 24 ms
8,656 KB
testcase_09 AC 24 ms
8,648 KB
testcase_10 AC 24 ms
8,776 KB
testcase_11 AC 24 ms
8,572 KB
testcase_12 AC 24 ms
8,840 KB
testcase_13 AC 24 ms
8,612 KB
testcase_14 AC 24 ms
8,760 KB
testcase_15 AC 25 ms
8,888 KB
testcase_16 AC 25 ms
8,740 KB
testcase_17 AC 24 ms
8,784 KB
testcase_18 AC 24 ms
8,656 KB
testcase_19 AC 24 ms
8,848 KB
testcase_20 WA -
権限があれば一括ダウンロードができます

ソースコード

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

print(ans)
0