結果

問題 No.2947 Sing a Song
ユーザー nikoro256nikoro256
提出日時 2024-10-25 21:32:48
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 91 ms / 2,000 ms
コード長 430 bytes
コンパイル時間 225 ms
コンパイル使用メモリ 82,536 KB
実行使用メモリ 84,348 KB
最終ジャッジ日時 2024-10-25 21:32:53
合計ジャッジ時間 4,934 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
51,876 KB
testcase_01 AC 38 ms
53,132 KB
testcase_02 AC 39 ms
52,140 KB
testcase_03 AC 42 ms
58,892 KB
testcase_04 AC 44 ms
61,288 KB
testcase_05 AC 38 ms
53,476 KB
testcase_06 AC 43 ms
59,896 KB
testcase_07 AC 43 ms
59,964 KB
testcase_08 AC 42 ms
61,784 KB
testcase_09 AC 42 ms
59,312 KB
testcase_10 AC 43 ms
60,008 KB
testcase_11 AC 39 ms
53,292 KB
testcase_12 AC 46 ms
62,728 KB
testcase_13 AC 50 ms
63,560 KB
testcase_14 AC 41 ms
55,040 KB
testcase_15 AC 46 ms
61,024 KB
testcase_16 AC 45 ms
60,084 KB
testcase_17 AC 52 ms
63,088 KB
testcase_18 AC 76 ms
75,016 KB
testcase_19 AC 84 ms
77,092 KB
testcase_20 AC 59 ms
69,448 KB
testcase_21 AC 58 ms
66,376 KB
testcase_22 AC 71 ms
74,640 KB
testcase_23 AC 91 ms
78,092 KB
testcase_24 AC 73 ms
78,016 KB
testcase_25 AC 89 ms
78,104 KB
testcase_26 AC 77 ms
78,152 KB
testcase_27 AC 83 ms
84,348 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(input())
S,T=map(str,input().split())
A=list(map(int,input().split()))
ans=[]
for i in range(N):
    ans.append([])
    for j in range(0,(A[i])//len(T)+1):
        if (A[i]-len(T)*j)%len(S)==0:
            count=(A[i]-len(T)*j)//len(S)
            for _ in range(count):
                ans[-1].append(S)
            for _ in range(j):
                ans[-1].append(T)
            break
for a in ans:
    print(' '.join(a))
0