結果

問題 No.186 中華風 (Easy)
ユーザー roarisroaris
提出日時 2022-11-11 13:50:06
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 570 bytes
コンパイル時間 552 ms
コンパイル使用メモリ 81,944 KB
実行使用メモリ 54,284 KB
最終ジャッジ日時 2024-09-13 09:38:50
合計ジャッジ時間 2,166 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,268 KB
testcase_01 AC 38 ms
54,284 KB
testcase_02 AC 37 ms
53,348 KB
testcase_03 AC 38 ms
52,616 KB
testcase_04 AC 37 ms
53,412 KB
testcase_05 AC 37 ms
53,260 KB
testcase_06 AC 37 ms
52,784 KB
testcase_07 AC 38 ms
53,116 KB
testcase_08 AC 38 ms
53,540 KB
testcase_09 AC 38 ms
52,476 KB
testcase_10 AC 39 ms
53,872 KB
testcase_11 AC 38 ms
52,192 KB
testcase_12 AC 38 ms
53,820 KB
testcase_13 AC 38 ms
52,268 KB
testcase_14 AC 38 ms
54,180 KB
testcase_15 AC 38 ms
53,792 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 37 ms
53,676 KB
testcase_19 AC 37 ms
52,784 KB
testcase_20 AC 37 ms
52,612 KB
testcase_21 AC 37 ms
52,660 KB
testcase_22 AC 38 ms
52,144 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline
from math import gcd

def ext_gcd(a, b):
    if b==0:
        return 1, 0
    
    s, t = ext_gcd(b, a%b)
    return t, s-a//b*t

def crt(rs, ms):
    r, m = 0, 1
    
    for ri, mi in zip(rs, ms):
        p, q = ext_gcd(m, mi)
        g = gcd(m, mi)
        
        if (ri-r)%g!=0:
            return -1
        
        r += m*(ri-r)//g*p
        m *= mi//g
        r %= m
    
    return r

rs, ms = [], []

for _ in range(3):
    r, m = map(int, input().split())
    rs.append(r)
    ms.append(m)

ans = crt(rs, ms)
print(ans)
0