結果

問題 No.2119 一般化百五減算
ユーザー H3PO4H3PO4
提出日時 2022-11-05 08:38:38
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 691 bytes
コンパイル時間 284 ms
コンパイル使用メモリ 81,808 KB
実行使用メモリ 83,428 KB
最終ジャッジ日時 2024-07-19 04:17:28
合計ジャッジ時間 3,019 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
58,312 KB
testcase_01 AC 44 ms
58,600 KB
testcase_02 AC 44 ms
58,996 KB
testcase_03 AC 43 ms
59,260 KB
testcase_04 AC 44 ms
59,264 KB
testcase_05 AC 44 ms
59,060 KB
testcase_06 AC 43 ms
58,012 KB
testcase_07 AC 43 ms
58,860 KB
testcase_08 AC 43 ms
57,820 KB
testcase_09 AC 44 ms
58,932 KB
testcase_10 AC 43 ms
59,176 KB
testcase_11 AC 43 ms
57,648 KB
testcase_12 AC 44 ms
58,804 KB
testcase_13 AC 43 ms
59,044 KB
testcase_14 AC 43 ms
58,340 KB
testcase_15 AC 43 ms
57,844 KB
testcase_16 AC 43 ms
57,580 KB
testcase_17 AC 43 ms
58,884 KB
testcase_18 AC 44 ms
58,708 KB
testcase_19 AC 43 ms
57,776 KB
testcase_20 WA -
testcase_21 AC 69 ms
80,120 KB
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

input = sys.stdin.buffer.readline


def solve(N, M, 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"
    res_table = [0] * (N + 1)
    for i, mod in enumerate(mod_table):
        if mod is None:
            continue
        for x in range(mod, N + 1, i):
            res_table[x] += 1
    for i in range(N + 1):
        if res_table[i] == M:
            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, M, V))
0