結果
| 問題 | No.2117 中国剰余定理入門 |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2022-11-04 22:12:10 |
| 言語 | PyPy3 (7.3.17) |
| 結果 |
AC
|
| 実行時間 | 66 ms / 2,000 ms |
| + 371µs | |
| コード長 | 263 bytes |
| 記録 | |
| コンパイル時間 | 251 ms |
| コンパイル使用メモリ | 96,112 KB |
| 実行使用メモリ | 83,072 KB |
| 最終ジャッジ日時 | 2026-08-17 16:02:33 |
| 合計ジャッジ時間 | 3,222 ms |
|
ジャッジサーバーID (参考情報) |
judge2_1 / judge3_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| 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')