結果

問題 No.1926 Sequence of Remainders
ユーザー colognecologne
提出日時 2022-05-10 14:37:04
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 311 ms / 2,000 ms
コード長 218 bytes
コンパイル時間 249 ms
コンパイル使用メモリ 82,240 KB
実行使用メモリ 76,980 KB
最終ジャッジ日時 2024-07-17 20:19:01
合計ジャッジ時間 15,506 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,076 KB
testcase_01 AC 285 ms
76,104 KB
testcase_02 AC 276 ms
76,100 KB
testcase_03 AC 282 ms
76,192 KB
testcase_04 AC 279 ms
76,168 KB
testcase_05 AC 285 ms
76,188 KB
testcase_06 AC 301 ms
76,404 KB
testcase_07 AC 297 ms
76,192 KB
testcase_08 AC 295 ms
76,180 KB
testcase_09 AC 297 ms
76,104 KB
testcase_10 AC 299 ms
76,308 KB
testcase_11 AC 299 ms
76,316 KB
testcase_12 AC 300 ms
76,292 KB
testcase_13 AC 309 ms
76,440 KB
testcase_14 AC 303 ms
76,236 KB
testcase_15 AC 303 ms
76,316 KB
testcase_16 AC 301 ms
76,980 KB
testcase_17 AC 311 ms
76,232 KB
testcase_18 AC 296 ms
76,224 KB
testcase_19 AC 296 ms
76,376 KB
testcase_20 AC 301 ms
76,252 KB
testcase_21 AC 299 ms
76,264 KB
testcase_22 AC 308 ms
76,132 KB
testcase_23 AC 299 ms
76,608 KB
testcase_24 AC 290 ms
76,412 KB
testcase_25 AC 301 ms
76,328 KB
testcase_26 AC 304 ms
76,104 KB
testcase_27 AC 311 ms
76,464 KB
testcase_28 AC 303 ms
76,196 KB
testcase_29 AC 301 ms
76,476 KB
testcase_30 AC 304 ms
76,236 KB
testcase_31 AC 302 ms
76,540 KB
testcase_32 AC 301 ms
76,488 KB
testcase_33 AC 299 ms
76,468 KB
testcase_34 AC 298 ms
76,064 KB
testcase_35 AC 292 ms
76,312 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def main():
    T = int(input())
    for i in range(T):
        N, M, K = map(int, input().split())
        A0 = K % M
        if N >= M-A0:
            A0 = 0
        print(A0)


if __name__ == '__main__':
    main()
0