結果

問題 No.2119 一般化百五減算
ユーザー H3PO4H3PO4
提出日時 2022-11-05 08:41:28
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 102 ms / 2,000 ms
コード長 714 bytes
コンパイル時間 319 ms
コンパイル使用メモリ 82,108 KB
実行使用メモリ 84,464 KB
最終ジャッジ日時 2024-07-19 04:18:54
合計ジャッジ時間 2,222 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 25
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

input = sys.stdin.buffer.readline


def solve(N, V):
    MAX = 10 ** 5
    mod_table = [None] * (MAX + 1)
    for c, b in V:
        if mod_table[b] is None:
            mod_table[b] = c
        elif mod_table[b] != c:
            return "NaN"

    ct = 0
    res_table = [0] * (N + 1)
    for i, mod in enumerate(mod_table):
        if mod is None:
            continue
        ct += 1
        for x in range(mod, N + 1, i):
            res_table[x] += 1
    for i in range(N + 1):
        if res_table[i] == ct:
            return i
    return "NaN"


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))
0