結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
53,456 KB
testcase_01 AC 36 ms
53,020 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 37 ms
53,616 KB
testcase_06 AC 48 ms
64,132 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 AC 57 ms
67,828 KB
testcase_18 AC 82 ms
76,328 KB
testcase_19 AC 110 ms
76,708 KB
testcase_20 AC 68 ms
76,356 KB
testcase_21 WA -
testcase_22 AC 82 ms
76,792 KB
testcase_23 WA -
testcase_24 AC 77 ms
76,764 KB
testcase_25 AC 87 ms
77,536 KB
testcase_26 AC 100 ms
76,576 KB
testcase_27 AC 90 ms
79,328 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:
    ans = []
    check_len = 0

    num_S = a // lenS
    for _ in range(num_S):
        ans.append(S)
        check_len += lenS
    if check_len < a:
        ans.append(T)
        check_len += lenT

    if check_len > a:
        excess_len = check_len - a
        for i in range(excess_len // lenS):
            ans[i] = ""

    print(*ans)
0