結果

問題 No.2117 中国剰余定理入門
ユーザー titia
提出日時 2022-11-04 21:24:04
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 47 ms / 2,000 ms
コード長 215 bytes
コンパイル時間 135 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 10,624 KB
最終ジャッジ日時 2024-07-18 19:07:29
合計ジャッジ時間 1,555 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 20
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

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

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