結果

問題 No.1176 少ない質問
ユーザー penguinmanpenguinman
提出日時 2020-11-01 00:48:55
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 139 bytes
コンパイル時間 274 ms
コンパイル使用メモリ 87,152 KB
実行使用メモリ 76,236 KB
最終ジャッジ日時 2023-09-29 10:54:11
合計ジャッジ時間 2,743 ms
ジャッジサーバーID
(参考情報)
judge14 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 72 ms
76,028 KB
testcase_01 AC 74 ms
76,040 KB
testcase_02 AC 73 ms
76,040 KB
testcase_03 AC 71 ms
76,040 KB
testcase_04 AC 74 ms
76,104 KB
testcase_05 AC 71 ms
76,064 KB
testcase_06 AC 73 ms
76,024 KB
testcase_07 AC 71 ms
75,836 KB
testcase_08 AC 71 ms
76,044 KB
testcase_09 AC 71 ms
76,172 KB
testcase_10 AC 70 ms
76,080 KB
testcase_11 AC 69 ms
76,068 KB
testcase_12 AC 74 ms
76,036 KB
testcase_13 AC 73 ms
76,160 KB
testcase_14 AC 73 ms
76,136 KB
testcase_15 AC 71 ms
75,972 KB
testcase_16 AC 70 ms
76,036 KB
testcase_17 AC 73 ms
75,960 KB
testcase_18 AC 73 ms
75,936 KB
testcase_19 AC 72 ms
76,044 KB
testcase_20 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(input())
ans=1e100
for i in range(20):
    x=i+2
    for j in range(100):
        if(x**j>N):
            ans=min(ans,x*j)
print(ans)
0