結果

問題 No.2947 Sing a Song
ユーザー miya145592miya145592
提出日時 2024-10-25 21:47:03
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 110 ms / 2,000 ms
コード長 1,182 bytes
コンパイル時間 396 ms
コンパイル使用メモリ 82,468 KB
実行使用メモリ 80,324 KB
最終ジャッジ日時 2024-10-25 21:47:49
合計ジャッジ時間 4,904 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,256 KB
testcase_01 AC 36 ms
54,376 KB
testcase_02 AC 36 ms
52,064 KB
testcase_03 AC 45 ms
61,608 KB
testcase_04 AC 48 ms
67,132 KB
testcase_05 AC 36 ms
53,172 KB
testcase_06 AC 45 ms
64,000 KB
testcase_07 AC 45 ms
63,144 KB
testcase_08 AC 48 ms
66,360 KB
testcase_09 AC 46 ms
63,884 KB
testcase_10 AC 45 ms
61,648 KB
testcase_11 AC 39 ms
54,920 KB
testcase_12 AC 49 ms
70,728 KB
testcase_13 AC 52 ms
72,036 KB
testcase_14 AC 39 ms
54,628 KB
testcase_15 AC 49 ms
65,992 KB
testcase_16 AC 69 ms
61,432 KB
testcase_17 AC 55 ms
67,944 KB
testcase_18 AC 77 ms
76,424 KB
testcase_19 AC 87 ms
76,644 KB
testcase_20 AC 74 ms
76,748 KB
testcase_21 AC 66 ms
72,644 KB
testcase_22 AC 77 ms
76,460 KB
testcase_23 AC 87 ms
76,808 KB
testcase_24 AC 85 ms
76,812 KB
testcase_25 AC 95 ms
76,640 KB
testcase_26 AC 87 ms
76,776 KB
testcase_27 AC 110 ms
80,324 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# https://ikatakos.com/pot/programming_algorithm/number_theory/euclidean_algorithm

# 引用(もといパクリ)
# Python で RSA 公開鍵暗号をなぞってみる - CAMPHOR- Tech Blog
# https://tech.camph.net/rsa-public-key-encryption/
 
def ex_euclid(x, y):
    c0, c1 = x, y
    a0, a1 = 1, 0
    b0, b1 = 0, 1
 
    while c1 != 0:
        m = c0 % c1
        q = c0 // c1
 
        c0, c1 = c1, m
        a0, a1 = a1, (a0 - q * a1)
        b0, b1 = b1, (b0 - q * b1)
 
    return c0, a0, b0

def exex_euclid(x,y,z):
    c, a, b = ex_euclid(x, y)
    w, m = divmod(z, c)
     
    # zがcの倍数でないなら等式は不可能
    if m != 0:
        return None
         
    u, v = x // c, y // c
    a, b = a * w, b * w
 
    # aを非負数の中で最小にする
    f, a = divmod(a, v)
    b += u * f
     
    # aを最小にしたのにbが負なら、ともに正の組は不可能
    if b < 0:
        return None
 
    return c, a, b, u, v

import sys
input = sys.stdin.readline
N = int(input())
S, T = input().split()
A = list(map(int, input().split()))
y = len(S)
x = len(T)
for z in A:
    c, a, b, u, v = exex_euclid(x, y, z)
    print(*([S]*b), *([T]*a))
0