結果

問題 No.2947 Sing a Song
ユーザー tassei903tassei903
提出日時 2024-10-25 21:36:20
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 113 ms / 2,000 ms
コード長 605 bytes
コンパイル時間 248 ms
コンパイル使用メモリ 82,408 KB
実行使用メモリ 79,704 KB
最終ジャッジ日時 2024-10-25 21:36:36
合計ジャッジ時間 4,836 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,884 KB
testcase_01 AC 35 ms
53,420 KB
testcase_02 AC 36 ms
52,936 KB
testcase_03 AC 44 ms
62,212 KB
testcase_04 AC 47 ms
67,216 KB
testcase_05 AC 36 ms
54,196 KB
testcase_06 AC 45 ms
62,868 KB
testcase_07 AC 51 ms
64,276 KB
testcase_08 AC 46 ms
66,316 KB
testcase_09 AC 44 ms
61,512 KB
testcase_10 AC 45 ms
62,544 KB
testcase_11 AC 39 ms
54,504 KB
testcase_12 AC 48 ms
69,680 KB
testcase_13 AC 53 ms
72,892 KB
testcase_14 AC 39 ms
53,760 KB
testcase_15 AC 50 ms
65,144 KB
testcase_16 AC 45 ms
62,600 KB
testcase_17 AC 55 ms
68,512 KB
testcase_18 AC 90 ms
76,572 KB
testcase_19 AC 85 ms
77,036 KB
testcase_20 AC 71 ms
76,520 KB
testcase_21 AC 66 ms
72,224 KB
testcase_22 AC 74 ms
76,764 KB
testcase_23 AC 82 ms
76,544 KB
testcase_24 AC 83 ms
76,560 KB
testcase_25 AC 90 ms
77,244 KB
testcase_26 AC 86 ms
76,700 KB
testcase_27 AC 113 ms
79,704 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()
from math import gcd
g = gcd(S, T)
S //= g
T //= g
for i in range(n):#Sx+Ty = X
    a[i] //= g
    y = a[i] * pow(T, -1, S) % S
    x = (a[i] - y * T) // S
    print(*([s] * x + [t] * y))
0