結果

問題 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
コンパイル時間 100 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 11,008 KB
最終ジャッジ日時 2024-07-22 11:12:40
合計ジャッジ時間 1,813 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
10,880 KB
testcase_01 AC 40 ms
10,880 KB
testcase_02 AC 38 ms
10,880 KB
testcase_03 AC 38 ms
10,880 KB
testcase_04 AC 37 ms
10,752 KB
testcase_05 AC 37 ms
11,008 KB
testcase_06 AC 36 ms
10,880 KB
testcase_07 AC 37 ms
10,880 KB
testcase_08 AC 36 ms
11,008 KB
testcase_09 AC 39 ms
10,752 KB
testcase_10 AC 37 ms
11,008 KB
testcase_11 AC 37 ms
11,008 KB
testcase_12 AC 36 ms
10,752 KB
testcase_13 AC 35 ms
11,008 KB
testcase_14 AC 37 ms
11,008 KB
testcase_15 AC 37 ms
11,008 KB
testcase_16 AC 37 ms
10,880 KB
testcase_17 AC 37 ms
10,752 KB
testcase_18 AC 36 ms
10,752 KB
testcase_19 AC 37 ms
10,880 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