結果

問題 No.1926 Sequence of Remainders
ユーザー aaaaaaaaaa2230aaaaaaaaaa2230
提出日時 2022-05-06 22:25:05
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 315 ms / 2,000 ms
コード長 304 bytes
コンパイル時間 149 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 76,672 KB
最終ジャッジ日時 2024-07-05 23:43:22
合計ジャッジ時間 12,509 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
51,968 KB
testcase_01 AC 273 ms
76,544 KB
testcase_02 AC 265 ms
75,904 KB
testcase_03 AC 268 ms
75,904 KB
testcase_04 AC 265 ms
76,032 KB
testcase_05 AC 268 ms
76,032 KB
testcase_06 AC 274 ms
76,288 KB
testcase_07 AC 277 ms
76,416 KB
testcase_08 AC 286 ms
76,160 KB
testcase_09 AC 279 ms
76,484 KB
testcase_10 AC 278 ms
76,236 KB
testcase_11 AC 276 ms
76,672 KB
testcase_12 AC 281 ms
76,416 KB
testcase_13 AC 282 ms
76,544 KB
testcase_14 AC 277 ms
76,456 KB
testcase_15 AC 281 ms
76,632 KB
testcase_16 AC 284 ms
76,344 KB
testcase_17 AC 280 ms
76,224 KB
testcase_18 AC 283 ms
76,032 KB
testcase_19 AC 275 ms
76,332 KB
testcase_20 AC 276 ms
76,032 KB
testcase_21 AC 283 ms
76,088 KB
testcase_22 AC 276 ms
76,544 KB
testcase_23 AC 276 ms
76,560 KB
testcase_24 AC 279 ms
76,288 KB
testcase_25 AC 282 ms
76,240 KB
testcase_26 AC 281 ms
76,432 KB
testcase_27 AC 288 ms
76,544 KB
testcase_28 AC 315 ms
76,132 KB
testcase_29 AC 280 ms
76,032 KB
testcase_30 AC 279 ms
76,288 KB
testcase_31 AC 278 ms
76,288 KB
testcase_32 AC 282 ms
76,200 KB
testcase_33 AC 277 ms
76,160 KB
testcase_34 AC 278 ms
76,348 KB
testcase_35 AC 280 ms
76,128 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def solve():
    n,m,k = map(int,input().split())
    now = k%m
    nn = 0
    while nn < n:
        nn += 1
        nm = m-nn
        if nm <= now:
            now %= nm
        else:
            dif = nm-now
            nn += dif-1
    return now

t = int(input())
for _ in range(t):
    print(solve())
0