結果

問題 No.2947 Sing a Song
ユーザー aa
提出日時 2024-10-25 22:26:58
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 85 ms / 2,000 ms
コード長 516 bytes
コンパイル時間 348 ms
コンパイル使用メモリ 82,408 KB
実行使用メモリ 78,968 KB
最終ジャッジ日時 2024-10-25 22:27:03
合計ジャッジ時間 4,537 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 25
権限があれば一括ダウンロードができます

ソースコード

diff #

import math
def xgcd(a,b):
    prevx, nextx = 1, 0
    prevy, nexty = 0, 1
    while b:
        quotient = a//b
        nextx, prevx = prevx - quotient * nextx, nextx
        nexty, prevy = prevy - quotient * nexty, nexty
        a, b = b, a % b
    return prevx, prevy,a
n=int(input())
S,T=input().split()
s=len(S);t=len(T)
v=math.gcd(s,t)
s//=v;t//=v
u=math.lcm(s,t)
a=list(map(int,input().split()))
x,y,d=xgcd(s,t)
for i in range(n):
	a[i]//=v 
	X=x*a[i];Y=y*a[i]
	w=Y//s
	Y%=s
	X+=w*t
	print((S+' ')*X+(T+' ')*Y)
0