結果

問題 No.1176 少ない質問
ユーザー toshiro_yanagitoshiro_yanagi
提出日時 2023-07-06 22:30:18
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 420 bytes
コンパイル時間 182 ms
コンパイル使用メモリ 10,636 KB
実行使用メモリ 8,712 KB
最終ジャッジ日時 2023-09-27 23:32:52
合計ジャッジ時間 1,935 ms
ジャッジサーバーID
(参考情報)
judge12 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 22 ms
8,556 KB
testcase_01 AC 19 ms
8,572 KB
testcase_02 AC 19 ms
8,572 KB
testcase_03 AC 20 ms
8,664 KB
testcase_04 AC 20 ms
8,568 KB
testcase_05 AC 20 ms
8,572 KB
testcase_06 AC 20 ms
8,644 KB
testcase_07 AC 20 ms
8,516 KB
testcase_08 AC 19 ms
8,676 KB
testcase_09 AC 18 ms
8,680 KB
testcase_10 AC 19 ms
8,600 KB
testcase_11 AC 19 ms
8,572 KB
testcase_12 AC 20 ms
8,608 KB
testcase_13 AC 19 ms
8,672 KB
testcase_14 AC 20 ms
8,556 KB
testcase_15 AC 19 ms
8,680 KB
testcase_16 AC 19 ms
8,572 KB
testcase_17 AC 20 ms
8,620 KB
testcase_18 AC 19 ms
8,576 KB
testcase_19 AC 19 ms
8,712 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**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