結果

問題 No.1926 Sequence of Remainders
ユーザー ytftytft
提出日時 2022-05-12 00:53:21
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 306 ms / 2,000 ms
コード長 101 bytes
コンパイル時間 269 ms
コンパイル使用メモリ 82,416 KB
実行使用メモリ 76,672 KB
最終ジャッジ日時 2024-07-19 11:03:57
合計ジャッジ時間 15,559 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
51,712 KB
testcase_01 AC 280 ms
76,604 KB
testcase_02 AC 266 ms
76,032 KB
testcase_03 AC 299 ms
76,288 KB
testcase_04 AC 296 ms
76,672 KB
testcase_05 AC 290 ms
76,544 KB
testcase_06 AC 288 ms
76,288 KB
testcase_07 AC 292 ms
76,288 KB
testcase_08 AC 290 ms
76,288 KB
testcase_09 AC 286 ms
76,416 KB
testcase_10 AC 294 ms
76,160 KB
testcase_11 AC 283 ms
75,904 KB
testcase_12 AC 289 ms
75,904 KB
testcase_13 AC 292 ms
75,904 KB
testcase_14 AC 300 ms
75,904 KB
testcase_15 AC 295 ms
76,288 KB
testcase_16 AC 304 ms
76,160 KB
testcase_17 AC 282 ms
76,288 KB
testcase_18 AC 294 ms
75,904 KB
testcase_19 AC 283 ms
76,032 KB
testcase_20 AC 277 ms
76,584 KB
testcase_21 AC 286 ms
76,328 KB
testcase_22 AC 292 ms
75,776 KB
testcase_23 AC 293 ms
76,356 KB
testcase_24 AC 284 ms
75,904 KB
testcase_25 AC 292 ms
76,288 KB
testcase_26 AC 294 ms
75,776 KB
testcase_27 AC 293 ms
75,904 KB
testcase_28 AC 291 ms
76,336 KB
testcase_29 AC 288 ms
76,360 KB
testcase_30 AC 306 ms
76,052 KB
testcase_31 AC 299 ms
76,252 KB
testcase_32 AC 286 ms
76,032 KB
testcase_33 AC 292 ms
75,904 KB
testcase_34 AC 290 ms
75,776 KB
testcase_35 AC 289 ms
76,160 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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