結果

問題 No.1926 Sequence of Remainders
ユーザー Akijin_007Akijin_007
提出日時 2022-05-06 21:28:20
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 218 ms / 2,000 ms
コード長 370 bytes
コンパイル時間 188 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 88,192 KB
最終ジャッジ日時 2024-07-05 22:34:42
合計ジャッジ時間 10,399 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
51,712 KB
testcase_01 AC 201 ms
87,676 KB
testcase_02 AC 193 ms
87,924 KB
testcase_03 AC 202 ms
87,552 KB
testcase_04 AC 202 ms
88,192 KB
testcase_05 AC 199 ms
87,544 KB
testcase_06 AC 208 ms
87,628 KB
testcase_07 AC 214 ms
87,500 KB
testcase_08 AC 218 ms
87,488 KB
testcase_09 AC 216 ms
87,360 KB
testcase_10 AC 213 ms
87,372 KB
testcase_11 AC 213 ms
87,368 KB
testcase_12 AC 218 ms
87,872 KB
testcase_13 AC 215 ms
87,368 KB
testcase_14 AC 216 ms
87,412 KB
testcase_15 AC 217 ms
87,364 KB
testcase_16 AC 217 ms
87,368 KB
testcase_17 AC 213 ms
87,492 KB
testcase_18 AC 218 ms
87,492 KB
testcase_19 AC 216 ms
88,004 KB
testcase_20 AC 216 ms
87,872 KB
testcase_21 AC 208 ms
88,004 KB
testcase_22 AC 218 ms
87,372 KB
testcase_23 AC 208 ms
88,004 KB
testcase_24 AC 208 ms
87,492 KB
testcase_25 AC 213 ms
87,336 KB
testcase_26 AC 211 ms
87,488 KB
testcase_27 AC 212 ms
87,624 KB
testcase_28 AC 206 ms
87,608 KB
testcase_29 AC 210 ms
87,504 KB
testcase_30 AC 203 ms
87,364 KB
testcase_31 AC 203 ms
87,620 KB
testcase_32 AC 213 ms
87,620 KB
testcase_33 AC 208 ms
87,360 KB
testcase_34 AC 206 ms
87,368 KB
testcase_35 AC 204 ms
87,368 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#int(input())
#map(int, input().split())
#list(map(int, input().split()))

T = int(input())

K = [0] * T

for i in range(T):
    K[i] = list(map(int, input().split()))

ans = [0] * T
for i in range(T):
    n = K[i][0]
    m = K[i][1]
    k = K[i][2]

    a = k % m
    if m - n <= a:
        ans[i] = 0
    else:
        ans[i] = a

for i in range(T):
    print(ans[i])
0