結果

問題 No.1926 Sequence of Remainders
ユーザー ripityripity
提出日時 2022-03-15 18:44:24
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 322 ms / 2,000 ms
コード長 133 bytes
コンパイル時間 522 ms
コンパイル使用メモリ 82,456 KB
実行使用メモリ 76,716 KB
最終ジャッジ日時 2024-10-09 04:47:05
合計ジャッジ時間 14,503 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
51,936 KB
testcase_01 AC 299 ms
76,636 KB
testcase_02 AC 292 ms
76,108 KB
testcase_03 AC 289 ms
76,328 KB
testcase_04 AC 294 ms
76,004 KB
testcase_05 AC 286 ms
76,012 KB
testcase_06 AC 313 ms
76,232 KB
testcase_07 AC 302 ms
76,248 KB
testcase_08 AC 307 ms
76,444 KB
testcase_09 AC 305 ms
76,528 KB
testcase_10 AC 302 ms
76,276 KB
testcase_11 AC 311 ms
76,716 KB
testcase_12 AC 315 ms
76,648 KB
testcase_13 AC 320 ms
75,860 KB
testcase_14 AC 312 ms
76,456 KB
testcase_15 AC 319 ms
76,604 KB
testcase_16 AC 313 ms
76,592 KB
testcase_17 AC 305 ms
75,976 KB
testcase_18 AC 304 ms
76,512 KB
testcase_19 AC 309 ms
76,248 KB
testcase_20 AC 320 ms
76,176 KB
testcase_21 AC 302 ms
76,508 KB
testcase_22 AC 309 ms
76,712 KB
testcase_23 AC 310 ms
76,096 KB
testcase_24 AC 306 ms
76,452 KB
testcase_25 AC 315 ms
76,672 KB
testcase_26 AC 305 ms
76,664 KB
testcase_27 AC 308 ms
75,964 KB
testcase_28 AC 314 ms
76,296 KB
testcase_29 AC 317 ms
76,520 KB
testcase_30 AC 317 ms
76,068 KB
testcase_31 AC 312 ms
76,540 KB
testcase_32 AC 303 ms
75,904 KB
testcase_33 AC 302 ms
76,108 KB
testcase_34 AC 305 ms
76,032 KB
testcase_35 AC 322 ms
76,092 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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