atcoder 競プロ典型90問 020 - Log Inequality
2022.10.23
問題
https://atcoder.jp/contests/typical90/tasks/typical90_t
方針
- 式変形すれば、
a
とcのb乗
の大きさを比較すればよいことがわかる
a, b, c = map(int, input().split())
if a < c ** b:
print('Yes')
else:
print('No')
https://atcoder.jp/contests/typical90/tasks/typical90_t
a
とcのb乗
の大きさを比較すればよいことがわかるa, b, c = map(int, input().split())
if a < c ** b:
print('Yes')
else:
print('No')