[Gold III] Title: 나이트 게임, Time: 40 ms, Memory: 32412 KB -BaekjoonHub

This commit is contained in:
SSUM
2025-05-14 21:54:57 +09:00
parent dea0b75183
commit f5da8c32fa
2 changed files with 46 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
import sys
T = int(input())
result = []
for _ in range(T):
N = int(input())
if N % 2 == 1:
result.append("koosaga")
else:
result.append("cubelover")
print("\n".join(result))