結果

問題 No.186 中華風 (Easy)
ユーザー neterukunneterukun
提出日時 2020-12-30 05:34:48
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 927 bytes
コンパイル時間 417 ms
コンパイル使用メモリ 82,332 KB
実行使用メモリ 53,912 KB
最終ジャッジ日時 2024-10-06 11:33:07
合計ジャッジ時間 1,866 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
53,364 KB
testcase_01 AC 37 ms
52,964 KB
testcase_02 AC 36 ms
53,228 KB
testcase_03 AC 38 ms
52,820 KB
testcase_04 AC 36 ms
53,360 KB
testcase_05 AC 35 ms
53,568 KB
testcase_06 AC 36 ms
52,836 KB
testcase_07 AC 34 ms
52,620 KB
testcase_08 AC 35 ms
53,572 KB
testcase_09 AC 37 ms
53,912 KB
testcase_10 AC 35 ms
52,808 KB
testcase_11 AC 38 ms
52,320 KB
testcase_12 AC 36 ms
52,236 KB
testcase_13 AC 36 ms
52,324 KB
testcase_14 AC 34 ms
53,292 KB
testcase_15 AC 38 ms
52,348 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 34 ms
52,988 KB
testcase_19 AC 37 ms
52,820 KB
testcase_20 AC 35 ms
52,840 KB
testcase_21 AC 35 ms
52,936 KB
testcase_22 AC 37 ms
52,292 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def extended_gcd(a, b):
    """ax + by = gcd(a, b) の整数解 (x, y) を求める"""
    if b == 0:
        return a, 1, 0
    else:
        g, y, x = extended_gcd(b, a % b)
        y -= (a // b) * x
        return g, x, y


def chinese_remainder_theorem(a, m):
    """すべての i について x = a[i] (mod. m[i]) を満たす x を求める
    x が存在しない場合は (0, -1) の組、x が存在するときは x = rem (mod. M) を
    満たす (rem, M) の組を返す
    """
    rem, M = 0, 1
    for i in range(len(a)):
        g, p, q = extended_gcd(M, m[i])
        if (a[i] - rem) % g != 0:
            return 0, -1
        tmp = (a[i] - rem) // g * p % (m[i] // g)
        rem += M * tmp
        M *= m[i] // g
    return rem % M, M


info = [list(map(int, input().split())) for i in range(3)]


x, y = list(zip(*info))
r, m = chinese_remainder_theorem(x, y)
if m == -1:
    print(-1)
else:
    print(r)
0