結果

問題 No.2117 中国剰余定理入門
ユーザー roaris
提出日時 2022-11-04 22:12:10
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 42 ms / 2,000 ms
コード長 263 bytes
コンパイル時間 247 ms
コンパイル使用メモリ 82,160 KB
実行使用メモリ 58,240 KB
最終ジャッジ日時 2024-07-18 20:00:57
合計ジャッジ時間 1,894 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 20
権限があれば一括ダウンロードができます

ソースコード

diff #

from math import *

def lcm(x, y):
    return x*y//gcd(x, y)

B0, C0 = map(int, input().split())
B1, C1 = map(int, input().split())
C0 %= B0
C1 %= B1

for i in range(lcm(B0, B1)):
    if i%B0==C0 and i%B1==C1:
        print(i)
        break
else:
    print('NaN')
0