complete 30868.py and uncomplete 1717.py 1806.py 30869.py

This commit is contained in:
2024-09-24 21:40:59 +09:00
parent bd8d2defaa
commit 3d8097d9ca
5 changed files with 86 additions and 0 deletions

View File

@@ -0,0 +1,6 @@
if __name__ == "__main__":
T = int(input())
for i in range(T):
N = int(input())
d, r = divmod(N, 5)
print(" ".join(["++++"] * d) + ((" " if d else "") + "|" * r if r else ""))