結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
51,840 KB
testcase_01 AC 265 ms
75,800 KB
testcase_02 AC 267 ms
75,888 KB
testcase_03 AC 289 ms
76,312 KB
testcase_04 AC 284 ms
76,544 KB
testcase_05 AC 286 ms
76,396 KB
testcase_06 AC 276 ms
76,320 KB
testcase_07 AC 294 ms
76,536 KB
testcase_08 AC 279 ms
76,160 KB
testcase_09 AC 279 ms
76,052 KB
testcase_10 AC 301 ms
75,992 KB
testcase_11 AC 285 ms
76,032 KB
testcase_12 AC 269 ms
76,544 KB
testcase_13 AC 273 ms
76,316 KB
testcase_14 AC 292 ms
75,904 KB
testcase_15 AC 277 ms
76,064 KB
testcase_16 AC 280 ms
76,416 KB
testcase_17 AC 274 ms
76,060 KB
testcase_18 AC 289 ms
75,732 KB
testcase_19 AC 275 ms
76,388 KB
testcase_20 AC 283 ms
75,996 KB
testcase_21 AC 278 ms
76,380 KB
testcase_22 AC 274 ms
76,060 KB
testcase_23 AC 281 ms
76,416 KB
testcase_24 AC 278 ms
75,876 KB
testcase_25 AC 278 ms
76,192 KB
testcase_26 AC 277 ms
75,932 KB
testcase_27 AC 283 ms
76,396 KB
testcase_28 AC 279 ms
76,216 KB
testcase_29 AC 275 ms
76,288 KB
testcase_30 AC 278 ms
76,416 KB
testcase_31 AC 279 ms
76,104 KB
testcase_32 AC 278 ms
76,072 KB
testcase_33 AC 275 ms
76,196 KB
testcase_34 AC 281 ms
76,060 KB
testcase_35 AC 275 ms
76,420 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

t = int(input())

for case in range(t):
    n, m, k = map(int, input().split())
    begin = k%m
    print(0) if m-n <= begin else print(begin)
0