結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,700 KB
testcase_01 AC 40 ms
52,900 KB
testcase_02 AC 36 ms
52,196 KB
testcase_03 AC 36 ms
52,680 KB
testcase_04 AC 37 ms
52,660 KB
testcase_05 AC 38 ms
52,612 KB
testcase_06 AC 37 ms
52,548 KB
testcase_07 AC 37 ms
52,392 KB
testcase_08 AC 36 ms
53,388 KB
testcase_09 AC 38 ms
52,824 KB
testcase_10 AC 37 ms
53,860 KB
testcase_11 AC 37 ms
53,344 KB
testcase_12 AC 37 ms
52,268 KB
testcase_13 AC 37 ms
52,000 KB
testcase_14 AC 38 ms
52,400 KB
testcase_15 AC 37 ms
52,552 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 37 ms
53,856 KB
testcase_19 AC 37 ms
53,056 KB
testcase_20 AC 37 ms
53,148 KB
testcase_21 AC 37 ms
53,296 KB
testcase_22 AC 37 ms
53,096 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,d
    return x, d # 数字≡x(mod d)ならいいという情報? 最小の数字はx

print(remainder(ls)[0])
0