結果

問題 No.1926 Sequence of Remainders
ユーザー AEnAEn
提出日時 2022-05-11 17:52:07
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 351 bytes
コンパイル時間 218 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 77,056 KB
最終ジャッジ日時 2024-07-19 03:02:44
合計ジャッジ時間 15,509 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
51,584 KB
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 AC 293 ms
76,160 KB
testcase_07 AC 288 ms
76,288 KB
testcase_08 AC 275 ms
75,776 KB
testcase_09 AC 280 ms
76,032 KB
testcase_10 AC 283 ms
76,032 KB
testcase_11 AC 298 ms
76,032 KB
testcase_12 AC 290 ms
76,288 KB
testcase_13 AC 291 ms
76,160 KB
testcase_14 AC 310 ms
76,032 KB
testcase_15 AC 310 ms
75,776 KB
testcase_16 AC 320 ms
76,288 KB
testcase_17 AC 282 ms
76,160 KB
testcase_18 AC 279 ms
76,544 KB
testcase_19 AC 288 ms
75,776 KB
testcase_20 AC 290 ms
75,904 KB
testcase_21 AC 282 ms
76,416 KB
testcase_22 AC 298 ms
75,776 KB
testcase_23 AC 278 ms
76,032 KB
testcase_24 AC 278 ms
76,288 KB
testcase_25 AC 286 ms
76,416 KB
testcase_26 AC 287 ms
76,032 KB
testcase_27 AC 274 ms
76,544 KB
testcase_28 AC 292 ms
76,544 KB
testcase_29 AC 298 ms
76,288 KB
testcase_30 AC 294 ms
76,160 KB
testcase_31 AC 305 ms
75,904 KB
testcase_32 AC 301 ms
76,288 KB
testcase_33 AC 308 ms
76,288 KB
testcase_34 AC 303 ms
76,288 KB
testcase_35 AC 296 ms
76,288 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

T = int(input())
for i in range(T):
    N, M, K = map(int, input().split())
    a = K%M
    cnt = 1
    while cnt <= N:
        if a >= (M-cnt):
            a %= (M-cnt)
            cnt += 1
        else:
            if a < (M-N):
                print(a)
                cnt = N+1
            else:
                print(0)
                cnt = N+1
0