← Back to List

34849번: 이중 반복문 ↗

Solutions

Python 3
81 B | 81 chars
n = int(input())
print("Accepted" if n * n <= 10 ** 8 else "Time limit exceeded")