結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
53,956 KB
testcase_01 WA -
testcase_02 AC 39 ms
53,156 KB
testcase_03 AC 47 ms
62,788 KB
testcase_04 AC 50 ms
67,472 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 48 ms
64,108 KB
testcase_08 AC 50 ms
65,968 KB
testcase_09 AC 47 ms
61,556 KB
testcase_10 AC 48 ms
62,808 KB
testcase_11 AC 40 ms
53,728 KB
testcase_12 AC 51 ms
69,820 KB
testcase_13 AC 57 ms
73,496 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 AC 58 ms
69,128 KB
testcase_18 AC 80 ms
76,640 KB
testcase_19 WA -
testcase_20 WA -
testcase_21 AC 67 ms
71,656 KB
testcase_22 AC 76 ms
76,748 KB
testcase_23 WA -
testcase_24 WA -
testcase_25 AC 94 ms
77,368 KB
testcase_26 WA -
testcase_27 WA -
権限があれば一括ダウンロードができます

ソースコード

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()
from math import gcd
g = gcd(S, T)
S //= g
T //= g
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