結果

問題 No.2947 Sing a Song
ユーザー I KI K
提出日時 2024-10-25 22:19:08
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 657 bytes
コンパイル時間 277 ms
コンパイル使用メモリ 82,772 KB
実行使用メモリ 258,904 KB
最終ジャッジ日時 2024-10-25 22:19:13
合計ジャッジ時間 5,383 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
53,196 KB
testcase_01 AC 35 ms
52,604 KB
testcase_02 AC 35 ms
52,952 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 35 ms
53,164 KB
testcase_06 AC 266 ms
258,904 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 48 ms
65,912 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 38 ms
53,892 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 AC 57 ms
71,752 KB
testcase_18 AC 96 ms
77,180 KB
testcase_19 AC 91 ms
76,840 KB
testcase_20 AC 69 ms
76,392 KB
testcase_21 WA -
testcase_22 AC 80 ms
76,992 KB
testcase_23 AC 118 ms
77,552 KB
testcase_24 AC 76 ms
76,480 KB
testcase_25 AC 99 ms
77,080 KB
testcase_26 AC 78 ms
76,368 KB
testcase_27 AC 90 ms
79,496 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(input())
S,T=input().split()
lenS=len(S)
lenT=len(T)
A=list(map(int,input().split()))
for a in A:
    lencount=0
    ans=[]
    check=""
    tmp=a//lenS
    lencount+=lenS*tmp
    if lencount<a:
        for i in range(tmp):
            ans.append(S)
            check+=S
        ans.append(T)
        check+=T
    else:
        for i in range(tmp):
            ans.append(S)
            check+=S

    if len(check)==a:
        print(*ans)
    elif len(check)>a:
        for i in range((len(check)-a)//lenS):
            ans[i]=""
        print(*ans)
    else:
        for i in range((a-len(check))//lenT):
            ans.append(T)
        print(*ans)
0