結果

問題 No.2947 Sing a Song
ユーザー nouka28nouka28
提出日時 2024-09-23 08:37:22
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 75 ms / 2,000 ms
コード長 310 bytes
コンパイル時間 5,784 ms
コンパイル使用メモリ 82,112 KB
実行使用メモリ 80,020 KB
最終ジャッジ日時 2024-09-23 12:01:52
合計ジャッジ時間 15,406 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,352 KB
testcase_01 AC 35 ms
52,120 KB
testcase_02 AC 33 ms
53,036 KB
testcase_03 AC 44 ms
61,640 KB
testcase_04 AC 44 ms
61,116 KB
testcase_05 AC 39 ms
58,228 KB
testcase_06 AC 66 ms
60,000 KB
testcase_07 AC 44 ms
61,572 KB
testcase_08 AC 41 ms
59,676 KB
testcase_09 AC 46 ms
61,796 KB
testcase_10 AC 44 ms
60,832 KB
testcase_11 AC 42 ms
59,488 KB
testcase_12 AC 40 ms
60,348 KB
testcase_13 AC 47 ms
64,416 KB
testcase_14 AC 43 ms
61,968 KB
testcase_15 AC 47 ms
63,880 KB
testcase_16 AC 43 ms
60,240 KB
testcase_17 AC 51 ms
65,644 KB
testcase_18 AC 56 ms
69,516 KB
testcase_19 AC 58 ms
70,312 KB
testcase_20 AC 55 ms
69,268 KB
testcase_21 AC 57 ms
67,792 KB
testcase_22 AC 58 ms
70,692 KB
testcase_23 AC 62 ms
74,508 KB
testcase_24 AC 64 ms
76,876 KB
testcase_25 AC 66 ms
76,596 KB
testcase_26 AC 68 ms
77,152 KB
testcase_27 AC 75 ms
80,020 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n=int(input())
s,t=input().split()
a=list(map(int,input().split()))

ans=[]
for i in a:
    mx=-1
    for j in range(i+1):
        if len(s)*j<=i and (i-len(s)*j)%len(t)==0:
            mx=max(mx,j)
    assert mx!=-1
    
    ans.append(" ".join([s]*mx+[t]*((i-len(s)*mx)//len(t))))

for i in ans:
    print(i)
0