結果

問題 No.2947 Sing a Song
ユーザー ねしんねしん
提出日時 2024-10-25 22:03:54
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 103 ms / 2,000 ms
コード長 292 bytes
コンパイル時間 210 ms
コンパイル使用メモリ 82,372 KB
実行使用メモリ 79,000 KB
最終ジャッジ日時 2024-10-25 22:05:07
合計ジャッジ時間 4,891 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
52,732 KB
testcase_01 AC 39 ms
52,488 KB
testcase_02 AC 42 ms
52,516 KB
testcase_03 AC 49 ms
61,632 KB
testcase_04 AC 53 ms
69,884 KB
testcase_05 AC 37 ms
53,164 KB
testcase_06 AC 49 ms
64,364 KB
testcase_07 AC 49 ms
64,812 KB
testcase_08 AC 51 ms
67,908 KB
testcase_09 AC 49 ms
62,476 KB
testcase_10 AC 49 ms
62,832 KB
testcase_11 AC 40 ms
52,884 KB
testcase_12 AC 53 ms
73,052 KB
testcase_13 AC 59 ms
74,560 KB
testcase_14 AC 40 ms
54,876 KB
testcase_15 AC 56 ms
67,448 KB
testcase_16 AC 50 ms
63,728 KB
testcase_17 AC 57 ms
68,400 KB
testcase_18 AC 84 ms
76,780 KB
testcase_19 AC 75 ms
74,940 KB
testcase_20 AC 70 ms
76,316 KB
testcase_21 AC 57 ms
66,276 KB
testcase_22 AC 85 ms
76,796 KB
testcase_23 AC 103 ms
77,088 KB
testcase_24 AC 77 ms
76,600 KB
testcase_25 AC 101 ms
77,076 KB
testcase_26 AC 78 ms
76,736 KB
testcase_27 AC 91 ms
79,000 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def gcd(a,b):
	if b==0:
		return a
	else:
		return gcd(b,a%b)
		
N=int(input())
S,T=list(map(str,input().split()))
A=list(map(int,input().split()))
s=len(S)
t=len(T)

for i in range(N):
	m=A[i]
	ans=[]
	while m%len(S)!=0:
		ans.append(T)
		m-=t
	while m>0:
		ans.append(S)
		m-=s
	print(*ans)
0