結果

問題 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
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
53,696 KB
testcase_01 AC 36 ms
53,208 KB
testcase_02 AC 36 ms
53,936 KB
testcase_03 AC 41 ms
53,888 KB
testcase_04 AC 37 ms
53,956 KB
testcase_05 AC 36 ms
53,732 KB
testcase_06 AC 36 ms
53,724 KB
testcase_07 AC 35 ms
54,112 KB
testcase_08 AC 36 ms
53,332 KB
testcase_09 AC 38 ms
53,752 KB
testcase_10 AC 37 ms
54,284 KB
testcase_11 AC 37 ms
53,920 KB
testcase_12 AC 42 ms
54,420 KB
testcase_13 AC 40 ms
55,352 KB
testcase_14 AC 36 ms
54,580 KB
testcase_15 AC 38 ms
53,392 KB
testcase_16 AC 37 ms
53,668 KB
testcase_17 AC 45 ms
60,292 KB
testcase_18 AC 67 ms
72,916 KB
testcase_19 AC 68 ms
73,164 KB
testcase_20 AC 51 ms
65,696 KB
testcase_21 AC 52 ms
65,180 KB
testcase_22 AC 66 ms
71,540 KB
testcase_23 AC 85 ms
76,936 KB
testcase_24 AC 58 ms
71,220 KB
testcase_25 AC 81 ms
76,420 KB
testcase_26 AC 60 ms
71,908 KB
testcase_27 AC 68 ms
78,968 KB
権限があれば一括ダウンロードができます

ソースコード

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