From 3d28a43506dbc7361054121bde9e07fe17a8f755 Mon Sep 17 00:00:00 2001 From: Gyubin Han <89185979+Gyubin-Han@users.noreply.github.com> Date: Wed, 8 May 2024 18:42:01 +0900 Subject: [PATCH] add: swea/5601.py --- swea/5601.py | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 swea/5601.py diff --git a/swea/5601.py b/swea/5601.py new file mode 100644 index 0000000..5ffcf8e --- /dev/null +++ b/swea/5601.py @@ -0,0 +1,9 @@ +t=int(input()) + +for tc in range(1,t+1): + n=int(input()) + + print("#"+str(tc),end=" ") + for _ in range(1,n+1): + print("1/"+str(n),end=" ") + print()