結果

問題 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
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 47 ms
58,772 KB
testcase_01 AC 40 ms
59,040 KB
testcase_02 AC 39 ms
58,268 KB
testcase_03 AC 37 ms
58,244 KB
testcase_04 AC 41 ms
58,760 KB
testcase_05 AC 38 ms
57,640 KB
testcase_06 AC 38 ms
58,596 KB
testcase_07 AC 39 ms
58,768 KB
testcase_08 AC 40 ms
58,380 KB
testcase_09 AC 39 ms
58,188 KB
testcase_10 AC 41 ms
58,980 KB
testcase_11 AC 43 ms
58,036 KB
testcase_12 AC 40 ms
58,932 KB
testcase_13 AC 38 ms
57,792 KB
testcase_14 AC 40 ms
58,780 KB
testcase_15 AC 42 ms
58,840 KB
testcase_16 AC 42 ms
57,860 KB
testcase_17 AC 41 ms
58,196 KB
testcase_18 AC 40 ms
58,388 KB
testcase_19 AC 40 ms
58,620 KB
testcase_20 AC 79 ms
80,516 KB
testcase_21 AC 65 ms
79,472 KB
testcase_22 AC 90 ms
82,432 KB
testcase_23 AC 90 ms
82,444 KB
testcase_24 AC 102 ms
84,464 KB
権限があれば一括ダウンロードができます

ソースコード

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