結果

問題 No.2947 Sing a Song
ユーザー tipstar0125tipstar0125
提出日時 2024-10-25 22:10:02
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 113 ms / 2,000 ms
コード長 378 bytes
コンパイル時間 500 ms
コンパイル使用メモリ 82,404 KB
実行使用メモリ 79,112 KB
最終ジャッジ日時 2024-10-25 22:10:14
合計ジャッジ時間 5,241 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,320 KB
testcase_01 AC 37 ms
52,572 KB
testcase_02 AC 38 ms
52,636 KB
testcase_03 AC 51 ms
64,272 KB
testcase_04 AC 53 ms
68,948 KB
testcase_05 AC 38 ms
52,536 KB
testcase_06 AC 49 ms
64,284 KB
testcase_07 AC 49 ms
65,012 KB
testcase_08 AC 54 ms
69,092 KB
testcase_09 AC 49 ms
62,616 KB
testcase_10 AC 48 ms
62,288 KB
testcase_11 AC 41 ms
54,108 KB
testcase_12 AC 53 ms
72,012 KB
testcase_13 AC 65 ms
76,056 KB
testcase_14 AC 41 ms
53,940 KB
testcase_15 AC 55 ms
66,596 KB
testcase_16 AC 52 ms
63,724 KB
testcase_17 AC 59 ms
68,812 KB
testcase_18 AC 87 ms
76,916 KB
testcase_19 AC 97 ms
76,996 KB
testcase_20 AC 69 ms
76,452 KB
testcase_21 AC 71 ms
71,196 KB
testcase_22 AC 86 ms
76,704 KB
testcase_23 AC 110 ms
77,520 KB
testcase_24 AC 82 ms
76,828 KB
testcase_25 AC 113 ms
77,264 KB
testcase_26 AC 81 ms
76,948 KB
testcase_27 AC 90 ms
79,112 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