結果

問題 No.1926 Sequence of Remainders
ユーザー miya145592miya145592
提出日時 2023-05-05 20:16:14
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 326 ms / 2,000 ms
コード長 148 bytes
コンパイル時間 438 ms
コンパイル使用メモリ 82,688 KB
実行使用メモリ 76,672 KB
最終ジャッジ日時 2024-05-02 14:32:07
合計ジャッジ時間 14,600 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
51,840 KB
testcase_01 AC 255 ms
76,032 KB
testcase_02 AC 258 ms
76,240 KB
testcase_03 AC 300 ms
76,544 KB
testcase_04 AC 288 ms
76,672 KB
testcase_05 AC 287 ms
76,416 KB
testcase_06 AC 278 ms
75,804 KB
testcase_07 AC 313 ms
76,568 KB
testcase_08 AC 272 ms
76,160 KB
testcase_09 AC 283 ms
76,288 KB
testcase_10 AC 277 ms
76,488 KB
testcase_11 AC 291 ms
75,996 KB
testcase_12 AC 270 ms
76,612 KB
testcase_13 AC 284 ms
76,160 KB
testcase_14 AC 278 ms
76,032 KB
testcase_15 AC 277 ms
76,380 KB
testcase_16 AC 283 ms
76,152 KB
testcase_17 AC 283 ms
76,160 KB
testcase_18 AC 286 ms
76,288 KB
testcase_19 AC 280 ms
76,116 KB
testcase_20 AC 286 ms
76,160 KB
testcase_21 AC 270 ms
76,032 KB
testcase_22 AC 288 ms
76,288 KB
testcase_23 AC 276 ms
76,240 KB
testcase_24 AC 275 ms
76,032 KB
testcase_25 AC 282 ms
76,160 KB
testcase_26 AC 284 ms
76,032 KB
testcase_27 AC 277 ms
76,160 KB
testcase_28 AC 271 ms
76,160 KB
testcase_29 AC 309 ms
76,416 KB
testcase_30 AC 289 ms
76,444 KB
testcase_31 AC 297 ms
76,588 KB
testcase_32 AC 326 ms
76,544 KB
testcase_33 AC 280 ms
76,160 KB
testcase_34 AC 276 ms
76,292 KB
testcase_35 AC 289 ms
76,384 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

T = int(input())
for _ in range(T):
    N, M, K = map(int, input().split())
    a = K%M
    if a >= M-N:
        print(0)
    else:
        print(a)
0