結果

問題 No.2947 Sing a Song
ユーザー nessiennessien
提出日時 2024-11-15 15:42:57
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 106 ms / 2,000 ms
コード長 414 bytes
コンパイル時間 289 ms
コンパイル使用メモリ 82,076 KB
実行使用メモリ 83,172 KB
最終ジャッジ日時 2024-11-15 15:43:03
合計ジャッジ時間 4,956 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
51,952 KB
testcase_01 AC 37 ms
51,812 KB
testcase_02 AC 38 ms
52,692 KB
testcase_03 AC 48 ms
61,992 KB
testcase_04 AC 52 ms
69,648 KB
testcase_05 AC 37 ms
53,316 KB
testcase_06 AC 49 ms
64,004 KB
testcase_07 AC 52 ms
64,604 KB
testcase_08 AC 51 ms
68,260 KB
testcase_09 AC 50 ms
62,732 KB
testcase_10 AC 49 ms
62,952 KB
testcase_11 AC 40 ms
55,072 KB
testcase_12 AC 53 ms
72,080 KB
testcase_13 AC 57 ms
74,140 KB
testcase_14 AC 40 ms
53,844 KB
testcase_15 AC 56 ms
66,352 KB
testcase_16 AC 49 ms
62,720 KB
testcase_17 AC 61 ms
67,428 KB
testcase_18 AC 72 ms
75,484 KB
testcase_19 AC 92 ms
77,412 KB
testcase_20 AC 73 ms
77,488 KB
testcase_21 AC 64 ms
70,196 KB
testcase_22 AC 78 ms
77,868 KB
testcase_23 AC 96 ms
77,880 KB
testcase_24 AC 88 ms
77,936 KB
testcase_25 AC 98 ms
78,320 KB
testcase_26 AC 85 ms
78,084 KB
testcase_27 AC 106 ms
83,172 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
S, T = input().split()
A = list(map(int,input().split()))

s = len(S)
t = len(T)
r = t % s 

ans = [list() for i in range(N)]
for i in range(N):
	if A[i] % s == 0:
		for j in range(A[i] // s):
			ans[i].append(S)
	else:
		p = A[i] % s
		cnt = 0
		while p % s != 0:
			p -= r
			ans[i].append(T)
			cnt += 1
		for j in range((A[i]-t*cnt)//s):
			ans[i].append(S)

for i in range(N):
	print(*ans[i])
0