結果

問題 No.2947 Sing a Song
ユーザー 寝癖寝癖
提出日時 2024-10-25 21:50:11
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 71 ms / 2,000 ms
コード長 274 bytes
コンパイル時間 147 ms
コンパイル使用メモリ 82,440 KB
実行使用メモリ 79,052 KB
最終ジャッジ日時 2024-10-25 21:50:25
合計ジャッジ時間 4,431 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
53,760 KB
testcase_01 AC 37 ms
52,056 KB
testcase_02 AC 36 ms
51,900 KB
testcase_03 AC 35 ms
53,184 KB
testcase_04 AC 43 ms
53,280 KB
testcase_05 AC 44 ms
61,140 KB
testcase_06 AC 38 ms
52,764 KB
testcase_07 AC 36 ms
53,372 KB
testcase_08 AC 37 ms
53,152 KB
testcase_09 AC 37 ms
54,216 KB
testcase_10 AC 38 ms
52,864 KB
testcase_11 AC 38 ms
53,632 KB
testcase_12 AC 42 ms
60,168 KB
testcase_13 AC 39 ms
54,656 KB
testcase_14 AC 39 ms
53,016 KB
testcase_15 AC 38 ms
54,436 KB
testcase_16 AC 37 ms
53,564 KB
testcase_17 AC 45 ms
61,636 KB
testcase_18 AC 59 ms
69,280 KB
testcase_19 AC 55 ms
68,632 KB
testcase_20 AC 53 ms
66,448 KB
testcase_21 AC 50 ms
64,816 KB
testcase_22 AC 55 ms
68,668 KB
testcase_23 AC 61 ms
74,100 KB
testcase_24 AC 63 ms
74,804 KB
testcase_25 AC 60 ms
73,688 KB
testcase_26 AC 62 ms
73,624 KB
testcase_27 AC 71 ms
79,052 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

B = [10**9] * len(S)
for i in range(len(S)):
    B[i*len(T)%len(S)] = min(B[i*len(T)%len(S)], i)

for a in A:
    y = B[a%len(S)]
    x = (a-len(T)*y)//len(S)
    print(' '.join([S] * x + [T] * y))
0