結果

問題 No.1926 Sequence of Remainders
ユーザー lilictakalilictaka
提出日時 2022-05-06 21:38:23
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 152 ms / 2,000 ms
コード長 227 bytes
コンパイル時間 139 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 82,192 KB
最終ジャッジ日時 2024-07-05 22:50:55
合計ジャッジ時間 7,630 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,096 KB
testcase_01 AC 134 ms
81,664 KB
testcase_02 AC 125 ms
81,932 KB
testcase_03 AC 149 ms
81,456 KB
testcase_04 AC 152 ms
80,676 KB
testcase_05 AC 150 ms
80,848 KB
testcase_06 AC 139 ms
81,456 KB
testcase_07 AC 141 ms
81,464 KB
testcase_08 AC 140 ms
81,328 KB
testcase_09 AC 139 ms
81,476 KB
testcase_10 AC 140 ms
81,328 KB
testcase_11 AC 141 ms
81,588 KB
testcase_12 AC 136 ms
81,468 KB
testcase_13 AC 139 ms
81,336 KB
testcase_14 AC 140 ms
81,172 KB
testcase_15 AC 142 ms
81,588 KB
testcase_16 AC 139 ms
81,712 KB
testcase_17 AC 138 ms
81,576 KB
testcase_18 AC 144 ms
81,204 KB
testcase_19 AC 138 ms
81,592 KB
testcase_20 AC 139 ms
81,592 KB
testcase_21 AC 141 ms
81,408 KB
testcase_22 AC 141 ms
81,620 KB
testcase_23 AC 141 ms
81,456 KB
testcase_24 AC 141 ms
81,464 KB
testcase_25 AC 137 ms
81,332 KB
testcase_26 AC 145 ms
81,840 KB
testcase_27 AC 140 ms
81,460 KB
testcase_28 AC 144 ms
82,188 KB
testcase_29 AC 141 ms
81,584 KB
testcase_30 AC 140 ms
81,844 KB
testcase_31 AC 149 ms
81,456 KB
testcase_32 AC 140 ms
81,680 KB
testcase_33 AC 140 ms
81,580 KB
testcase_34 AC 142 ms
82,192 KB
testcase_35 AC 141 ms
81,592 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

T = int(input())
ANS = []
def solve(n,m,k):
    a0 = k % m
    if m-a0 > n:
        return a0
    else:
        return 0
for _ in range(T):
    N,M,K = map(int,input().split())
    ANS.append(solve(N,M,K))
print(*ANS,sep='\n')
0