結果

問題 No.2947 Sing a Song
ユーザー rlangevinrlangevin
提出日時 2024-10-25 21:39:07
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 345 bytes
コンパイル時間 371 ms
コンパイル使用メモリ 82,528 KB
実行使用メモリ 81,128 KB
最終ジャッジ日時 2024-10-25 21:39:13
合計ジャッジ時間 5,368 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 51 ms
70,160 KB
testcase_01 AC 52 ms
70,908 KB
testcase_02 AC 52 ms
70,412 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 AC 59 ms
75,284 KB
testcase_07 AC 60 ms
76,412 KB
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 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 80 ms
77,900 KB
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 AC 90 ms
78,240 KB
testcase_25 WA -
testcase_26 AC 88 ms
78,328 KB
testcase_27 AC 105 ms
81,128 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(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