結果

問題 No.186 中華風 (Easy)
ユーザー karankaranrankarankaranran
提出日時 2023-01-22 02:55:14
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 632 bytes
コンパイル時間 158 ms
コンパイル使用メモリ 82,172 KB
実行使用メモリ 66,156 KB
最終ジャッジ日時 2024-06-24 07:54:32
合計ジャッジ時間 1,845 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,332 KB
testcase_01 AC 37 ms
52,688 KB
testcase_02 AC 37 ms
54,160 KB
testcase_03 AC 36 ms
53,568 KB
testcase_04 AC 36 ms
52,216 KB
testcase_05 AC 37 ms
51,828 KB
testcase_06 AC 39 ms
53,164 KB
testcase_07 AC 41 ms
53,152 KB
testcase_08 AC 38 ms
52,856 KB
testcase_09 AC 37 ms
52,692 KB
testcase_10 AC 36 ms
52,436 KB
testcase_11 AC 36 ms
52,600 KB
testcase_12 AC 37 ms
52,936 KB
testcase_13 AC 37 ms
53,380 KB
testcase_14 AC 38 ms
52,660 KB
testcase_15 AC 38 ms
53,828 KB
testcase_16 RE -
testcase_17 RE -
testcase_18 AC 39 ms
52,652 KB
testcase_19 AC 38 ms
52,348 KB
testcase_20 AC 37 ms
53,136 KB
testcase_21 AC 38 ms
53,756 KB
testcase_22 AC 37 ms
52,444 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

ls = [tuple(map(int,input().split())) for _ in range(3)]

def extgcd(a, b):
    if b:
        d, y, x = extgcd(b, a % b)
        y -= (a // b) * x
        return d, x, y
    return a, 1, 0

# V = [(X_i, Y_i), ...]: X_i (mod Y_i)
def remainder(V):
    x = 0; d = 1
    for X, Y in V:
        g, a, b = extgcd(d, Y)
        if (X-x)%g:
            return -1,-1 # 理屈は分からんが駄目な時にこれを出力
        x, d = (Y*b*x + d*a*X) // g, d*(Y // g)
        x %= d
        if x == 0:
            return d
    return x, d # 数字≡x(mod d)ならいいという情報? 最小の数字はx

print(remainder(ls)[0])
0