結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,596 KB
testcase_01 AC 36 ms
53,680 KB
testcase_02 AC 38 ms
53,092 KB
testcase_03 AC 37 ms
53,512 KB
testcase_04 AC 38 ms
53,420 KB
testcase_05 AC 36 ms
53,688 KB
testcase_06 AC 38 ms
52,400 KB
testcase_07 AC 36 ms
52,568 KB
testcase_08 AC 36 ms
52,940 KB
testcase_09 AC 36 ms
52,004 KB
testcase_10 AC 37 ms
53,208 KB
testcase_11 AC 38 ms
53,132 KB
testcase_12 AC 38 ms
52,676 KB
testcase_13 AC 37 ms
52,608 KB
testcase_14 AC 37 ms
52,836 KB
testcase_15 AC 36 ms
52,268 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 37 ms
52,688 KB
testcase_19 AC 38 ms
52,628 KB
testcase_20 AC 37 ms
53,172 KB
testcase_21 AC 37 ms
52,776 KB
testcase_22 AC 38 ms
52,520 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
    return x, d # 数字≡x(mod d)ならいいという情報? 最小の数字はx

print(remainder(ls)[0])
0