atcoder 競プロ典型90問 020 - Log Inequality
2022.10.23

問題

方針

  • 式変形すれば、acのb乗の大きさを比較すればよいことがわかる
python
a, b, c = map(int, input().split())
if a < c ** b:
    print('Yes')
else:
    print('No')