Submission #29073933
Source Code Expand
Copy
from collections import defaultdictn = int(input())if n > 5:print("Yes")else:print("Yes" if 2**n > n*n else "No")
from collections import defaultdict n = int(input()) if n > 5: print("Yes") else: print("Yes" if 2**n > n*n else "No")
Submission Info
Submission Time | |
---|---|
Task | A - Exponential or Quadratic |
User | janux |
Language | Python (3.8.2) |
Score | 100 |
Code Size | 131 Byte |
Status | AC |
Exec Time | 23 ms |
Memory | 9452 KB |
Judge Result
Set Name | Sample | All | ||||
---|---|---|---|---|---|---|
Score / Max Score | 0 / 0 | 100 / 100 | ||||
Status |
|
|
Set Name | Test Cases |
---|---|
Sample | example0.txt, example1.txt, example2.txt |
All | 000.txt, 001.txt, 002.txt, 003.txt, 004.txt, 005.txt, 006.txt, 007.txt, 008.txt, 009.txt, 010.txt, example0.txt, example1.txt, example2.txt |
Case Name | Status | Exec Time | Memory |
---|---|---|---|
000.txt | AC | 17 ms | 9268 KB |
001.txt | AC | 21 ms | 9152 KB |
002.txt | AC | 18 ms | 9396 KB |
003.txt | AC | 18 ms | 9156 KB |
004.txt | AC | 18 ms | 9156 KB |
005.txt | AC | 20 ms | 9160 KB |
006.txt | AC | 18 ms | 9264 KB |
007.txt | AC | 19 ms | 9448 KB |
008.txt | AC | 19 ms | 9264 KB |
009.txt | AC | 18 ms | 9452 KB |
010.txt | AC | 19 ms | 9268 KB |
example0.txt | AC | 23 ms | 9268 KB |
example1.txt | AC | 22 ms | 9316 KB |
example2.txt | AC | 20 ms | 9328 KB |