結果
| 問題 | No.2117 中国剰余定理入門 |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2022-11-04 22:12:10 |
| 言語 | PyPy3 (7.3.17) |
| 結果 |
AC
|
| 実行時間 | 26 ms / 2,000 ms |
| コード長 | 263 bytes |
| 記録 | |
| コンパイル時間 | 127 ms |
| コンパイル使用メモリ | 85,876 KB |
| 実行使用メモリ | 138,708 KB |
| 最終ジャッジ日時 | 2026-04-02 12:21:20 |
| 合計ジャッジ時間 | 1,396 ms |
|
ジャッジサーバーID (参考情報) |
judge3_1 / judge1_1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 20 |
ソースコード
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')