結果

問題 No.2947 Sing a Song
ユーザー I KI K
提出日時 2024-10-25 22:20:24
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 735 bytes
コンパイル時間 438 ms
コンパイル使用メモリ 82,380 KB
実行使用メモリ 79,372 KB
最終ジャッジ日時 2024-10-25 22:20:30
合計ジャッジ時間 4,880 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,688 KB
testcase_01 AC 36 ms
52,260 KB
testcase_02 AC 36 ms
52,684 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 36 ms
52,892 KB
testcase_06 AC 39 ms
58,772 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 39 ms
58,456 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 37 ms
53,668 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 AC 47 ms
62,060 KB
testcase_18 AC 70 ms
74,420 KB
testcase_19 AC 69 ms
74,912 KB
testcase_20 AC 57 ms
71,616 KB
testcase_21 WA -
testcase_22 AC 73 ms
76,208 KB
testcase_23 AC 67 ms
76,544 KB
testcase_24 AC 67 ms
76,608 KB
testcase_25 AC 87 ms
77,076 KB
testcase_26 AC 69 ms
76,272 KB
testcase_27 AC 75 ms
79,372 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def solve_pattern(N, S, T, A):
    lenS = len(S)
    lenT = len(T)
    
    for target_len in A:
        S_count = target_len // lenS
        ans = [S] * S_count
        current_len = lenS * S_count
        
        while current_len < target_len:
            ans.append(T)
            current_len += lenT
            
        if current_len > target_len:
            remove_count = (current_len - target_len) // lenS
            ans[:remove_count] = [""] * remove_count
        
        filtered_ans = list(filter(None, ans))
        print(" ".join(filtered_ans))

def main():
    N = int(input())
    S, T = input().split()
    A = list(map(int, input().split()))
    solve_pattern(N, S, T, A)

if __name__ == "__main__":
    main()
0