結果

問題 No.2947 Sing a Song
ユーザー shimonohnishishimonohnishi
提出日時 2024-11-03 19:01:15
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 116 ms / 2,000 ms
コード長 621 bytes
コンパイル時間 329 ms
コンパイル使用メモリ 82,372 KB
実行使用メモリ 82,632 KB
最終ジャッジ日時 2024-11-03 19:01:21
合計ジャッジ時間 5,774 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 48 ms
63,992 KB
testcase_01 AC 48 ms
63,124 KB
testcase_02 AC 50 ms
63,984 KB
testcase_03 AC 60 ms
68,668 KB
testcase_04 AC 69 ms
75,632 KB
testcase_05 AC 47 ms
63,100 KB
testcase_06 AC 59 ms
69,700 KB
testcase_07 AC 66 ms
73,364 KB
testcase_08 AC 63 ms
72,564 KB
testcase_09 AC 60 ms
69,128 KB
testcase_10 AC 62 ms
69,356 KB
testcase_11 AC 54 ms
66,252 KB
testcase_12 AC 60 ms
73,556 KB
testcase_13 AC 80 ms
79,132 KB
testcase_14 AC 53 ms
65,468 KB
testcase_15 AC 72 ms
74,344 KB
testcase_16 AC 60 ms
69,272 KB
testcase_17 AC 67 ms
72,836 KB
testcase_18 AC 90 ms
80,252 KB
testcase_19 AC 111 ms
80,236 KB
testcase_20 AC 73 ms
79,428 KB
testcase_21 AC 74 ms
75,836 KB
testcase_22 AC 92 ms
79,808 KB
testcase_23 AC 100 ms
79,848 KB
testcase_24 AC 78 ms
79,612 KB
testcase_25 AC 116 ms
80,728 KB
testcase_26 AC 77 ms
79,620 KB
testcase_27 AC 85 ms
82,632 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from math import gcd
N = int(input())
S, T = input().split()
s, t = len(S), len(T)
A = list(map(int, input().split()))

MAX = 2 * 10 ** 5

cnta = [-1] * (MAX + 1)
for i in range(0, MAX + 1):
    if i % s == 0:
        cnta[i] = i // s
cntb = [-1] * (MAX + 1)
for i in range(MAX + 1):
    if cnta[i] == -1:
        if i - t < 0 or cntb[i - t] == -1:
            continue
        cntb[i] = cntb[i - t] + 1
    else:
        cntb[i] = 0

for a in A:
    # a = xs+ytを解く
    y = cntb[a]
    x = cnta[a - y * t]
    for _ in range(x):
        print(S, end=" ")
    for _ in range(y):
        print(T, end=" ")
    print()
0