結果

問題 No.2947 Sing a Song
ユーザー rlangevinrlangevin
提出日時 2024-10-25 21:41:32
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 105 ms / 2,000 ms
コード長 347 bytes
コンパイル時間 161 ms
コンパイル使用メモリ 82,360 KB
実行使用メモリ 80,808 KB
最終ジャッジ日時 2024-10-25 21:41:44
合計ジャッジ時間 4,992 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 51 ms
70,304 KB
testcase_01 AC 47 ms
62,092 KB
testcase_02 AC 50 ms
70,040 KB
testcase_03 AC 55 ms
72,828 KB
testcase_04 AC 67 ms
77,840 KB
testcase_05 AC 49 ms
71,268 KB
testcase_06 AC 53 ms
68,572 KB
testcase_07 AC 60 ms
75,588 KB
testcase_08 AC 63 ms
78,004 KB
testcase_09 AC 60 ms
74,956 KB
testcase_10 AC 59 ms
74,172 KB
testcase_11 AC 52 ms
70,800 KB
testcase_12 AC 67 ms
77,528 KB
testcase_13 AC 66 ms
78,028 KB
testcase_14 AC 53 ms
72,088 KB
testcase_15 AC 64 ms
77,948 KB
testcase_16 AC 58 ms
75,048 KB
testcase_17 AC 67 ms
78,088 KB
testcase_18 AC 80 ms
78,304 KB
testcase_19 AC 89 ms
78,380 KB
testcase_20 AC 77 ms
78,012 KB
testcase_21 AC 73 ms
78,408 KB
testcase_22 AC 82 ms
78,256 KB
testcase_23 AC 98 ms
78,208 KB
testcase_24 AC 87 ms
77,956 KB
testcase_25 AC 95 ms
78,644 KB
testcase_26 AC 85 ms
78,152 KB
testcase_27 AC 105 ms
80,808 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
S, T = input().split()
s, t = len(S), len(T)
A = list(map(int, input().split()))
M = 2 * 10 ** 5
ans = [-1] * (M + 1)
for i in range(M + 1):
    for j in range(t*i, M + 1, s):
        if ans[j] != -1:
            break
        ans[j] = i

for a in A:
    r = ans[a]
    q = (a - r * t) // s
    v = [S] * q + [T] * r
    print(*v)
0