結果

問題 No.2947 Sing a Song
ユーザー tassei903tassei903
提出日時 2024-10-25 21:32:49
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 523 bytes
コンパイル時間 314 ms
コンパイル使用メモリ 82,576 KB
実行使用メモリ 79,508 KB
最終ジャッジ日時 2024-10-25 21:32:59
合計ジャッジ時間 5,088 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
52,832 KB
testcase_01 AC 35 ms
52,084 KB
testcase_02 AC 34 ms
52,620 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 AC 45 ms
63,932 KB
testcase_07 AC 45 ms
63,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 77 ms
76,380 KB
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 AC 76 ms
76,468 KB
testcase_25 WA -
testcase_26 AC 76 ms
76,316 KB
testcase_27 AC 93 ms
79,508 KB
権限があれば一括ダウンロードができます

ソースコード

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] % S
    x = (a[i] - y * T) // S
    print(*([s] * x + [t] * y))
0