結果

問題 No.186 中華風 (Easy)
ユーザー shotoyooshotoyoo
提出日時 2020-09-13 19:01:48
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,665 bytes
コンパイル時間 169 ms
コンパイル使用メモリ 82,404 KB
実行使用メモリ 53,940 KB
最終ジャッジ日時 2024-06-13 04:23:27
合計ジャッジ時間 1,981 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
53,940 KB
testcase_01 AC 38 ms
52,580 KB
testcase_02 AC 40 ms
53,516 KB
testcase_03 AC 37 ms
52,592 KB
testcase_04 AC 37 ms
52,872 KB
testcase_05 AC 37 ms
52,896 KB
testcase_06 AC 37 ms
52,852 KB
testcase_07 AC 38 ms
53,000 KB
testcase_08 AC 37 ms
52,584 KB
testcase_09 AC 38 ms
52,324 KB
testcase_10 AC 38 ms
52,616 KB
testcase_11 AC 38 ms
53,540 KB
testcase_12 AC 37 ms
53,392 KB
testcase_13 AC 37 ms
52,808 KB
testcase_14 AC 37 ms
53,656 KB
testcase_15 AC 37 ms
52,688 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 39 ms
53,408 KB
testcase_19 AC 38 ms
53,084 KB
testcase_20 AC 36 ms
52,712 KB
testcase_21 AC 37 ms
52,448 KB
testcase_22 AC 37 ms
53,092 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = lambda : sys.stdin.readline().rstrip()
sys.setrecursionlimit(max(1000, 10**9))
write = lambda x: sys.stdout.write(x+"\n")


xy = [tuple(map(int, input().split())) for _ in range(3)]
from math import gcd
def gcd2(a, b):
    """a*x + b*y = gcd(a,b)なるx,yも求める
    """
    l = []
    while b:
        l.append(divmod(a,b))
        a, b = b, a%b
    x, y = 1, 0
    for aa,bb in l[::-1]:
        x, y = y, x - aa*y
    return a, x, y
def modinv(x, M):
    """素数ではないM、Mと互いに素なxに対し
    x * y == 1 mod M なるyを求める
    """
    a,xx,yy = gcd2(x,M)
#     l = []
#     while M:
#         l.append(divmod(x,M))
#         x, M = M, x%M
#     xx, yy = 1, 0
#     for aa,bb in l[::-1]:
#         xx, yy = yy, xx - aa*yy
    return a,xx%M
def crt(rs, ms):
    """x == rs[i] mod ms[i] をみたすxをを求め、(x, l(=ms))を返す
    (そのようなxは x + i * lとして書ける)
    存在しない場合はNoneを返す
    長さが0の配列を渡すと(0,1)を返す
    """
    r0 = 0
    m0 = 1
    for r1,m1 in zip(rs, ms):
        if m0<m1:
            m0, m1 = m1, m0
            r0, r1 = r1, r0
        if m0%m1==0:
            if r0%m1 != r1:
                return None,None
            else:
                continue
#         print(m0,m1)
        g,im = modinv(m0, m1)
        u1 = m1//g
        if (r1-r0)%g!=0:
            return None,None
        x = (r1-r0) // g % u1 * im % u1
        r0 += x * m0
        m0 *= u1
        if r0<0:
            r0 += m0
    return r0,m0
r,m = crt([item[0] for item in xy], [item[1] for item in xy])
if r is not None:
    print(r%m)
else:
    print(-1)
0