結果
| 問題 | No.2117 中国剰余定理入門 |
| コンテスト | |
| ユーザー |
titia
|
| 提出日時 | 2022-11-04 21:22:33 |
| 言語 | Python3 (3.14.3 + numpy 2.4.4 + scipy 1.17.1) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 210 bytes |
| 記録 | |
| コンパイル時間 | 348 ms |
| コンパイル使用メモリ | 20,828 KB |
| 実行使用メモリ | 36,316 KB |
| 最終ジャッジ日時 | 2026-04-02 12:09:33 |
| 合計ジャッジ時間 | 4,281 ms |
|
ジャッジサーバーID (参考情報) |
judge5_1 / judge2_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| 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")
titia