結果

問題 No.1926 Sequence of Remainders
ユーザー ああいいああいい
提出日時 2022-05-08 08:07:12
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 302 ms / 2,000 ms
コード長 211 bytes
コンパイル時間 188 ms
コンパイル使用メモリ 82,108 KB
実行使用メモリ 77,056 KB
最終ジャッジ日時 2024-07-07 18:13:23
合計ジャッジ時間 15,805 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
51,968 KB
testcase_01 AC 271 ms
76,288 KB
testcase_02 AC 270 ms
76,544 KB
testcase_03 AC 288 ms
76,672 KB
testcase_04 AC 297 ms
77,056 KB
testcase_05 AC 284 ms
77,056 KB
testcase_06 AC 281 ms
76,416 KB
testcase_07 AC 277 ms
76,672 KB
testcase_08 AC 277 ms
76,288 KB
testcase_09 AC 273 ms
76,288 KB
testcase_10 AC 284 ms
76,160 KB
testcase_11 AC 274 ms
76,416 KB
testcase_12 AC 276 ms
76,672 KB
testcase_13 AC 271 ms
76,416 KB
testcase_14 AC 292 ms
76,416 KB
testcase_15 AC 284 ms
76,672 KB
testcase_16 AC 285 ms
76,416 KB
testcase_17 AC 283 ms
76,288 KB
testcase_18 AC 277 ms
76,800 KB
testcase_19 AC 277 ms
76,288 KB
testcase_20 AC 282 ms
76,416 KB
testcase_21 AC 278 ms
76,288 KB
testcase_22 AC 279 ms
76,288 KB
testcase_23 AC 272 ms
76,544 KB
testcase_24 AC 284 ms
76,416 KB
testcase_25 AC 295 ms
76,288 KB
testcase_26 AC 301 ms
76,288 KB
testcase_27 AC 302 ms
76,288 KB
testcase_28 AC 277 ms
76,160 KB
testcase_29 AC 285 ms
76,800 KB
testcase_30 AC 279 ms
76,032 KB
testcase_31 AC 280 ms
76,544 KB
testcase_32 AC 279 ms
76,416 KB
testcase_33 AC 283 ms
76,416 KB
testcase_34 AC 278 ms
76,288 KB
testcase_35 AC 281 ms
76,288 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

T = int(input())

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