結果

問題 No.1926 Sequence of Remainders
ユーザー Omura ShunsukeOmura Shunsuke
提出日時 2022-05-11 22:36:40
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 300 ms / 2,000 ms
コード長 147 bytes
コンパイル時間 816 ms
コンパイル使用メモリ 82,300 KB
実行使用メモリ 76,976 KB
最終ジャッジ日時 2024-07-19 08:22:53
合計ジャッジ時間 15,029 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
52,156 KB
testcase_01 AC 281 ms
75,676 KB
testcase_02 AC 261 ms
75,928 KB
testcase_03 AC 279 ms
76,260 KB
testcase_04 AC 280 ms
76,976 KB
testcase_05 AC 282 ms
76,548 KB
testcase_06 AC 299 ms
76,192 KB
testcase_07 AC 295 ms
76,144 KB
testcase_08 AC 275 ms
76,132 KB
testcase_09 AC 279 ms
75,756 KB
testcase_10 AC 278 ms
75,956 KB
testcase_11 AC 284 ms
76,264 KB
testcase_12 AC 280 ms
76,324 KB
testcase_13 AC 270 ms
76,120 KB
testcase_14 AC 282 ms
76,604 KB
testcase_15 AC 290 ms
76,172 KB
testcase_16 AC 274 ms
76,196 KB
testcase_17 AC 277 ms
76,124 KB
testcase_18 AC 270 ms
76,136 KB
testcase_19 AC 273 ms
75,820 KB
testcase_20 AC 267 ms
76,052 KB
testcase_21 AC 277 ms
76,116 KB
testcase_22 AC 272 ms
76,136 KB
testcase_23 AC 280 ms
75,880 KB
testcase_24 AC 299 ms
76,116 KB
testcase_25 AC 287 ms
76,304 KB
testcase_26 AC 283 ms
76,144 KB
testcase_27 AC 300 ms
76,116 KB
testcase_28 AC 273 ms
76,448 KB
testcase_29 AC 290 ms
76,060 KB
testcase_30 AC 278 ms
76,240 KB
testcase_31 AC 288 ms
75,740 KB
testcase_32 AC 273 ms
76,064 KB
testcase_33 AC 284 ms
76,352 KB
testcase_34 AC 300 ms
76,240 KB
testcase_35 AC 277 ms
75,924 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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