結果
問題 |
No.2119 一般化百五減算
|
ユーザー |
|
提出日時 | 2022-11-04 21:47:00 |
言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
結果 |
TLE
|
実行時間 | - |
コード長 | 908 bytes |
コンパイル時間 | 158 ms |
コンパイル使用メモリ | 12,416 KB |
実行使用メモリ | 27,036 KB |
最終ジャッジ日時 | 2024-07-18 19:31:19 |
合計ジャッジ時間 | 4,503 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 20 TLE * 1 -- * 4 |
ソースコード
import sys input = sys.stdin.buffer.readline """中国剰余定理 https://tjkendev.github.io/procon-library/python/math/chinese-remainder.html から拝借し、一部改変しています""" def extgcd(a, b): if b: d, y, x = extgcd(b, a % b) y -= (a // b) * x return d, x, y return a, 1, 0 # V = [(X_i, Y_i), ...]: X_i (mod Y_i) def remainder(N, V): x = 0 d = 1 for X, Y in V: g, a, b = extgcd(d, Y) x, d = (Y * b * x + d * a * X) // g, d * (Y // g) x %= d if x > N: return None return x def solve(N, V): res = remainder(N, V) if res is None: return "NaN" for c, b in V: if res % b != c: return "NaN" return res N = int(input()) M = int(input()) V = [] for _ in range(M): b, c = map(int, input().split()) c %= b V.append((c, b)) print(solve(N, V))