結果

問題 No.2947 Sing a Song
ユーザー ThetaTheta
提出日時 2024-11-20 12:02:52
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 101 ms / 2,000 ms
コード長 639 bytes
コンパイル時間 334 ms
コンパイル使用メモリ 82,248 KB
実行使用メモリ 79,132 KB
最終ジャッジ日時 2024-11-20 12:03:01
合計ジャッジ時間 4,591 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
51,584 KB
testcase_01 AC 35 ms
51,840 KB
testcase_02 AC 35 ms
51,840 KB
testcase_03 AC 35 ms
51,968 KB
testcase_04 AC 36 ms
52,480 KB
testcase_05 AC 37 ms
51,968 KB
testcase_06 AC 38 ms
52,352 KB
testcase_07 AC 37 ms
52,352 KB
testcase_08 AC 37 ms
52,352 KB
testcase_09 AC 39 ms
53,376 KB
testcase_10 AC 48 ms
58,240 KB
testcase_11 AC 38 ms
52,992 KB
testcase_12 AC 42 ms
58,752 KB
testcase_13 AC 42 ms
55,040 KB
testcase_14 AC 40 ms
53,376 KB
testcase_15 AC 39 ms
54,144 KB
testcase_16 AC 38 ms
53,248 KB
testcase_17 AC 50 ms
63,360 KB
testcase_18 AC 84 ms
76,544 KB
testcase_19 AC 87 ms
76,616 KB
testcase_20 AC 70 ms
68,864 KB
testcase_21 AC 56 ms
67,328 KB
testcase_22 AC 88 ms
76,416 KB
testcase_23 AC 95 ms
76,416 KB
testcase_24 AC 69 ms
76,288 KB
testcase_25 AC 101 ms
76,472 KB
testcase_26 AC 69 ms
76,032 KB
testcase_27 AC 77 ms
79,132 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def main():
    N = int(input())
    S, T = input().split()
    A = list(map(int, input().split()))
    for length in A:
        for t_ctr in range(length+1):
            if len(T) * t_ctr > length:
                raise ValueError
            if (length - len(T)*t_ctr) % len(S) == 0:
                s_ctr = (length - len(T)*t_ctr) // len(S)
                print(" ".join([S]*s_ctr), end="")
                if t_ctr > 0:
                    if s_ctr > 0:
                        print(end=" ")
                    print(" ".join([T]*t_ctr), end="")
                print()
                break


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