結果

問題 No.2947 Sing a Song
ユーザー tipstar0125tipstar0125
提出日時 2024-10-25 22:01:18
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 377 bytes
コンパイル時間 205 ms
コンパイル使用メモリ 82,576 KB
実行使用メモリ 78,892 KB
最終ジャッジ日時 2024-10-25 22:02:32
合計ジャッジ時間 4,806 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
53,020 KB
testcase_01 AC 37 ms
52,888 KB
testcase_02 AC 37 ms
52,004 KB
testcase_03 AC 54 ms
63,836 KB
testcase_04 AC 51 ms
69,336 KB
testcase_05 WA -
testcase_06 AC 48 ms
65,072 KB
testcase_07 AC 48 ms
64,972 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 47 ms
63,516 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 55 ms
66,572 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 68 ms
76,448 KB
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 AC 79 ms
76,640 KB
testcase_25 WA -
testcase_26 AC 79 ms
76,860 KB
testcase_27 AC 91 ms
78,892 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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


for a in A:
    num=a//len(S)
    while num>0:
        if (a-num*len(S))%len(T)==0:
            ans=[]
            for _ in range(num):
                ans.append(S)
            for _ in range((a-num*len(S))//len(T)):
                ans.append(T)
            print(*ans)
            break
        num-=1
0