結果
問題 |
No.2117 中国剰余定理入門
|
ユーザー |
![]() |
提出日時 | 2022-11-04 21:22:33 |
言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
結果 |
WA
|
実行時間 | - |
コード長 | 210 bytes |
コンパイル時間 | 90 ms |
コンパイル使用メモリ | 12,416 KB |
実行使用メモリ | 10,624 KB |
最終ジャッジ日時 | 2024-07-18 19:04:30 |
合計ジャッジ時間 | 1,457 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 7 WA * 13 |
ソースコード
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 and i%B1==C1: print(i) break else: print("NaN")