結果

問題 No.2947 Sing a Song
ユーザー 👑 rin204rin204
提出日時 2024-10-26 00:41:59
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 77 ms / 2,000 ms
コード長 385 bytes
コンパイル時間 429 ms
コンパイル使用メモリ 82,524 KB
実行使用メモリ 80,564 KB
最終ジャッジ日時 2024-10-26 00:42:05
合計ジャッジ時間 5,089 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
61,368 KB
testcase_01 AC 48 ms
60,192 KB
testcase_02 AC 45 ms
60,784 KB
testcase_03 AC 47 ms
61,336 KB
testcase_04 AC 46 ms
60,932 KB
testcase_05 AC 49 ms
62,468 KB
testcase_06 AC 43 ms
61,248 KB
testcase_07 AC 44 ms
61,516 KB
testcase_08 AC 44 ms
62,052 KB
testcase_09 AC 45 ms
60,596 KB
testcase_10 AC 45 ms
60,428 KB
testcase_11 AC 45 ms
60,996 KB
testcase_12 AC 51 ms
64,248 KB
testcase_13 AC 47 ms
62,744 KB
testcase_14 AC 48 ms
62,788 KB
testcase_15 AC 46 ms
62,180 KB
testcase_16 AC 49 ms
61,448 KB
testcase_17 AC 52 ms
63,356 KB
testcase_18 AC 66 ms
72,780 KB
testcase_19 AC 64 ms
70,604 KB
testcase_20 AC 63 ms
69,076 KB
testcase_21 AC 61 ms
68,132 KB
testcase_22 AC 63 ms
70,844 KB
testcase_23 AC 73 ms
77,900 KB
testcase_24 AC 70 ms
76,000 KB
testcase_25 AC 66 ms
76,156 KB
testcase_26 AC 71 ms
76,164 KB
testcase_27 AC 77 ms
80,564 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
S, T = input().split()
A = list(map(int, input().split()))
ls = len(S)
lt = len(T)
m = 200000
ma = [-(1 << 30)] * (m + 1)
ma[0] = 0
for i in range(m + 1):
    if i >= ls:
        ma[i] = max(ma[i], ma[i - ls] + 1)
    if i >= lt:
        ma[i] = max(ma[i], ma[i - lt])


for a in A:
    sc = ma[a]
    tc = (a - sc * ls) // lt
    print(" ".join([S] * sc + [T] * tc))
0