結果

問題 No.1926 Sequence of Remainders
ユーザー ryusukeryusuke
提出日時 2022-05-06 21:39:34
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 329 ms / 2,000 ms
コード長 150 bytes
コンパイル時間 297 ms
コンパイル使用メモリ 82,296 KB
実行使用メモリ 76,724 KB
最終ジャッジ日時 2024-07-05 22:52:06
合計ジャッジ時間 14,270 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,292 KB
testcase_01 AC 288 ms
75,924 KB
testcase_02 AC 288 ms
76,064 KB
testcase_03 AC 318 ms
76,556 KB
testcase_04 AC 308 ms
76,712 KB
testcase_05 AC 317 ms
76,456 KB
testcase_06 AC 304 ms
75,868 KB
testcase_07 AC 310 ms
76,264 KB
testcase_08 AC 306 ms
75,996 KB
testcase_09 AC 298 ms
76,008 KB
testcase_10 AC 302 ms
76,332 KB
testcase_11 AC 305 ms
76,164 KB
testcase_12 AC 301 ms
76,364 KB
testcase_13 AC 301 ms
76,300 KB
testcase_14 AC 307 ms
76,072 KB
testcase_15 AC 310 ms
75,856 KB
testcase_16 AC 298 ms
76,056 KB
testcase_17 AC 307 ms
76,008 KB
testcase_18 AC 309 ms
76,192 KB
testcase_19 AC 298 ms
76,380 KB
testcase_20 AC 299 ms
76,076 KB
testcase_21 AC 309 ms
76,136 KB
testcase_22 AC 306 ms
76,276 KB
testcase_23 AC 297 ms
75,940 KB
testcase_24 AC 299 ms
75,740 KB
testcase_25 AC 304 ms
76,464 KB
testcase_26 AC 314 ms
76,092 KB
testcase_27 AC 306 ms
76,084 KB
testcase_28 AC 304 ms
76,048 KB
testcase_29 AC 304 ms
76,160 KB
testcase_30 AC 316 ms
75,984 KB
testcase_31 AC 305 ms
76,360 KB
testcase_32 AC 309 ms
75,976 KB
testcase_33 AC 329 ms
76,272 KB
testcase_34 AC 302 ms
76,260 KB
testcase_35 AC 296 ms
76,724 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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