結果

問題 No.1926 Sequence of Remainders
ユーザー nephrologistnephrologist
提出日時 2022-05-06 21:38:20
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 105 ms / 2,000 ms
コード長 565 bytes
コンパイル時間 143 ms
コンパイル使用メモリ 82,688 KB
実行使用メモリ 76,572 KB
最終ジャッジ日時 2024-07-05 22:50:47
合計ジャッジ時間 6,789 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
51,840 KB
testcase_01 AC 88 ms
76,288 KB
testcase_02 AC 87 ms
75,840 KB
testcase_03 AC 103 ms
75,756 KB
testcase_04 AC 101 ms
76,544 KB
testcase_05 AC 103 ms
76,572 KB
testcase_06 AC 102 ms
76,232 KB
testcase_07 AC 101 ms
76,032 KB
testcase_08 AC 100 ms
75,648 KB
testcase_09 AC 102 ms
75,892 KB
testcase_10 AC 100 ms
75,980 KB
testcase_11 AC 103 ms
75,912 KB
testcase_12 AC 102 ms
76,416 KB
testcase_13 AC 101 ms
76,028 KB
testcase_14 AC 103 ms
75,588 KB
testcase_15 AC 101 ms
75,956 KB
testcase_16 AC 101 ms
75,924 KB
testcase_17 AC 100 ms
76,068 KB
testcase_18 AC 103 ms
76,032 KB
testcase_19 AC 102 ms
76,232 KB
testcase_20 AC 99 ms
75,896 KB
testcase_21 AC 101 ms
76,032 KB
testcase_22 AC 101 ms
75,532 KB
testcase_23 AC 101 ms
76,160 KB
testcase_24 AC 102 ms
75,776 KB
testcase_25 AC 103 ms
75,708 KB
testcase_26 AC 101 ms
75,616 KB
testcase_27 AC 100 ms
75,632 KB
testcase_28 AC 103 ms
75,976 KB
testcase_29 AC 101 ms
75,776 KB
testcase_30 AC 103 ms
75,648 KB
testcase_31 AC 100 ms
76,124 KB
testcase_32 AC 105 ms
76,160 KB
testcase_33 AC 100 ms
75,776 KB
testcase_34 AC 100 ms
75,992 KB
testcase_35 AC 99 ms
75,956 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

input = sys.stdin.buffer.readline

t = int(input())


def divide(n):
    res = set()
    for i in range(1, int(n ** 0.5) + 1):
        if n % i == 0:
            res.add(i)
            res.add(n // i)
    return res


for _ in range(t):
    n, m, k = map(int, input().split())

    num = k % m

    mn = m - n
    # yakusu = divide(num)
    # ans = -1
    # for a in yakusu:
    #     if mn <= a:
    #         ans = 0
    #         break
    # if ans == -1:
    #     ans = num % mn
    if mn <= num:
        print(0)
    else:
        print(num % mn)
0