結果

問題 No.1176 少ない質問
ユーザー daikisuyamadaikisuyama
提出日時 2020-08-21 21:45:46
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 251 bytes
コンパイル時間 161 ms
コンパイル使用メモリ 81,944 KB
実行使用メモリ 57,984 KB
最終ジャッジ日時 2024-10-15 05:30:21
合計ジャッジ時間 1,735 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
57,984 KB
testcase_01 AC 45 ms
57,856 KB
testcase_02 AC 43 ms
57,472 KB
testcase_03 AC 43 ms
57,600 KB
testcase_04 AC 46 ms
57,728 KB
testcase_05 AC 41 ms
57,600 KB
testcase_06 AC 42 ms
57,600 KB
testcase_07 AC 41 ms
57,600 KB
testcase_08 AC 43 ms
57,856 KB
testcase_09 AC 45 ms
57,600 KB
testcase_10 AC 42 ms
57,856 KB
testcase_11 AC 42 ms
57,472 KB
testcase_12 AC 42 ms
57,984 KB
testcase_13 AC 40 ms
57,984 KB
testcase_14 AC 41 ms
57,984 KB
testcase_15 AC 43 ms
57,344 KB
testcase_16 AC 41 ms
57,728 KB
testcase_17 AC 42 ms
57,472 KB
testcase_18 AC 40 ms
57,856 KB
testcase_19 AC 42 ms
57,600 KB
testcase_20 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import math
a=int(input())
ans=10000000000000
for i in range(1000):
    for j in range(1000):
        if i**j>=a:
            if i*j<ans:
                ans=i*j
                break
            else:
                print(ans)
                exit()
0