結果

問題 No.1176 少ない質問
ユーザー anagohirameanagohirame
提出日時 2020-08-21 22:22:44
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 50 ms / 1,000 ms
コード長 119 bytes
コンパイル時間 161 ms
コンパイル使用メモリ 82,228 KB
実行使用メモリ 62,848 KB
最終ジャッジ日時 2024-10-15 05:51:17
合計ジャッジ時間 1,873 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 50 ms
60,928 KB
testcase_01 AC 45 ms
60,416 KB
testcase_02 AC 50 ms
61,568 KB
testcase_03 AC 45 ms
60,800 KB
testcase_04 AC 47 ms
60,544 KB
testcase_05 AC 47 ms
60,928 KB
testcase_06 AC 45 ms
60,436 KB
testcase_07 AC 48 ms
62,592 KB
testcase_08 AC 45 ms
60,544 KB
testcase_09 AC 49 ms
62,848 KB
testcase_10 AC 44 ms
60,032 KB
testcase_11 AC 42 ms
58,752 KB
testcase_12 AC 46 ms
60,288 KB
testcase_13 AC 44 ms
59,264 KB
testcase_14 AC 46 ms
61,952 KB
testcase_15 AC 48 ms
62,720 KB
testcase_16 AC 45 ms
60,928 KB
testcase_17 AC 45 ms
61,568 KB
testcase_18 AC 43 ms
59,520 KB
testcase_19 AC 45 ms
60,928 KB
testcase_20 AC 39 ms
52,096 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

a = int(input())
ans = a
for i in range(2, 1000):
	j = 1
	while pow(i, j) < a:
		j += 1
	ans = min(ans, i*j)
print(ans)
0