結果

問題 No.2947 Sing a Song
ユーザー tassei903tassei903
提出日時 2024-10-25 21:34:18
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 539 bytes
コンパイル時間 341 ms
コンパイル使用メモリ 82,324 KB
実行使用メモリ 77,244 KB
最終ジャッジ日時 2024-10-25 21:34:28
合計ジャッジ時間 5,042 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
54,036 KB
testcase_01 RE -
testcase_02 AC 41 ms
53,388 KB
testcase_03 AC 47 ms
61,364 KB
testcase_04 AC 49 ms
66,188 KB
testcase_05 RE -
testcase_06 RE -
testcase_07 AC 49 ms
62,980 KB
testcase_08 AC 48 ms
66,604 KB
testcase_09 AC 48 ms
63,224 KB
testcase_10 AC 47 ms
62,396 KB
testcase_11 AC 40 ms
53,500 KB
testcase_12 AC 52 ms
69,284 KB
testcase_13 AC 55 ms
72,108 KB
testcase_14 RE -
testcase_15 RE -
testcase_16 RE -
testcase_17 AC 58 ms
68,200 KB
testcase_18 AC 80 ms
76,288 KB
testcase_19 RE -
testcase_20 RE -
testcase_21 AC 68 ms
71,996 KB
testcase_22 AC 77 ms
76,680 KB
testcase_23 RE -
testcase_24 RE -
testcase_25 AC 94 ms
77,244 KB
testcase_26 RE -
testcase_27 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = lambda :sys.stdin.readline()[:-1]
ni = lambda :int(input())
na = lambda :list(map(int,input().split()))
yes = lambda :print("yes");Yes = lambda :print("Yes");YES = lambda : print("YES")
no = lambda :print("no");No = lambda :print("No");NO = lambda : print("NO")
#######################################################################

n = ni()
s, t = input().split()
S, T = len(s), len(t)
a = na()
for i in range(n):#Sx+Ty = X
    y = a[i] * pow(T, -1, S) % S
    x = (a[i] - y * T) // S
    print(*([s] * x + [t] * y))
0