結果

問題 No.1176 少ない質問
ユーザー mesame3993mesame3993
提出日時 2021-11-18 01:08:42
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 37 ms / 1,000 ms
コード長 271 bytes
コンパイル時間 549 ms
コンパイル使用メモリ 82,324 KB
実行使用メモリ 53,496 KB
最終ジャッジ日時 2024-06-06 17:44:46
合計ジャッジ時間 2,058 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
52,896 KB
testcase_01 AC 35 ms
52,820 KB
testcase_02 AC 35 ms
51,956 KB
testcase_03 AC 36 ms
52,616 KB
testcase_04 AC 36 ms
52,576 KB
testcase_05 AC 35 ms
52,372 KB
testcase_06 AC 35 ms
52,608 KB
testcase_07 AC 36 ms
52,772 KB
testcase_08 AC 35 ms
52,612 KB
testcase_09 AC 36 ms
53,148 KB
testcase_10 AC 36 ms
52,472 KB
testcase_11 AC 36 ms
51,560 KB
testcase_12 AC 36 ms
52,276 KB
testcase_13 AC 34 ms
53,496 KB
testcase_14 AC 34 ms
53,184 KB
testcase_15 AC 35 ms
52,692 KB
testcase_16 AC 35 ms
51,996 KB
testcase_17 AC 36 ms
52,700 KB
testcase_18 AC 36 ms
52,132 KB
testcase_19 AC 37 ms
52,188 KB
testcase_20 AC 36 ms
53,024 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def main():
  from sys import stdin
  readline=stdin.readline
  a = int(readline())
  ans = a 
  for i in range(2, a):
    tmp = ans
    for j in range(61):
      if i**j > a:
        tmp = i*j
        break
    if ans < tmp:
      break
    ans = tmp
  print(ans)
main()
0