結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,620 KB
testcase_01 AC 283 ms
76,504 KB
testcase_02 AC 277 ms
76,264 KB
testcase_03 AC 305 ms
76,508 KB
testcase_04 AC 305 ms
76,504 KB
testcase_05 AC 304 ms
76,300 KB
testcase_06 AC 294 ms
76,032 KB
testcase_07 AC 292 ms
76,152 KB
testcase_08 AC 296 ms
76,416 KB
testcase_09 AC 303 ms
76,156 KB
testcase_10 AC 307 ms
76,032 KB
testcase_11 AC 297 ms
76,032 KB
testcase_12 AC 301 ms
76,316 KB
testcase_13 AC 311 ms
76,032 KB
testcase_14 AC 298 ms
76,416 KB
testcase_15 AC 299 ms
75,944 KB
testcase_16 AC 294 ms
76,032 KB
testcase_17 AC 336 ms
76,032 KB
testcase_18 AC 293 ms
76,136 KB
testcase_19 AC 304 ms
76,416 KB
testcase_20 AC 296 ms
76,216 KB
testcase_21 AC 299 ms
76,032 KB
testcase_22 AC 299 ms
76,160 KB
testcase_23 AC 302 ms
76,224 KB
testcase_24 AC 312 ms
75,984 KB
testcase_25 AC 297 ms
76,032 KB
testcase_26 AC 297 ms
75,948 KB
testcase_27 AC 306 ms
75,904 KB
testcase_28 AC 310 ms
76,032 KB
testcase_29 AC 303 ms
76,032 KB
testcase_30 AC 306 ms
76,416 KB
testcase_31 AC 306 ms
76,544 KB
testcase_32 AC 299 ms
76,160 KB
testcase_33 AC 309 ms
76,544 KB
testcase_34 AC 297 ms
76,368 KB
testcase_35 AC 301 ms
76,032 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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