結果

問題 No.186 中華風 (Easy)
ユーザー AEnAEn
提出日時 2023-06-04 22:32:40
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 603 bytes
コンパイル時間 286 ms
コンパイル使用メモリ 82,168 KB
実行使用メモリ 54,372 KB
最終ジャッジ日時 2024-06-09 04:11:54
合計ジャッジ時間 1,699 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
53,184 KB
testcase_01 AC 36 ms
53,744 KB
testcase_02 AC 35 ms
52,756 KB
testcase_03 AC 34 ms
53,224 KB
testcase_04 AC 34 ms
52,568 KB
testcase_05 AC 33 ms
53,552 KB
testcase_06 AC 32 ms
52,992 KB
testcase_07 AC 33 ms
52,604 KB
testcase_08 AC 35 ms
53,180 KB
testcase_09 AC 33 ms
54,372 KB
testcase_10 AC 31 ms
53,312 KB
testcase_11 AC 31 ms
53,104 KB
testcase_12 AC 30 ms
53,276 KB
testcase_13 AC 31 ms
53,140 KB
testcase_14 AC 32 ms
53,536 KB
testcase_15 AC 31 ms
53,012 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 31 ms
52,536 KB
testcase_19 AC 34 ms
52,740 KB
testcase_20 AC 31 ms
52,588 KB
testcase_21 AC 31 ms
52,612 KB
testcase_22 AC 30 ms
53,292 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def extgcd(a, b):
    """returns gcd(a, b), s, r s.t. a * s + b * r == gcd(a, b)"""
    s, bs = 0, 1
    r, br = b, a
    while r:
        q = br // r
        br, r = r, br - q * r
        bs, s = s, bs - q * s
    return br, bs, (br-bs*a)//b if b else 0

def crt(V):
    """最小のxと最小公倍数dを返す"""
    x = 0; d = 1
    for X, Y in V:
        g, a, b = extgcd(d, Y)
        x, d = (Y*b*x + d*a*X) // g, d*(Y // g)
        x %= d
    return x, d

a = [list(map(int, input().split())) for _ in range(3)]
x,d = crt(a)
for X,Y in a:
    if x%Y!=X:
        print(-1)
        exit()
print(x)
0