結果
| 問題 | No.2117 中国剰余定理入門 |
| コンテスト | |
| ユーザー |
titia
|
| 提出日時 | 2022-11-04 21:22:33 |
| 言語 | Python3 (3.14.3 + numpy 2.4.4 + scipy 1.17.1) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 210 bytes |
| 記録 | |
| コンパイル時間 | 293 ms |
| コンパイル使用メモリ | 21,152 KB |
| 実行使用メモリ | 15,740 KB |
| 最終ジャッジ日時 | 2026-08-17 14:56:59 |
| 合計ジャッジ時間 | 3,776 ms |
|
ジャッジサーバーID (参考情報) |
judge3_0 / 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