結果

問題 No.1926 Sequence of Remainders
ユーザー titan23titan23
提出日時 2022-06-24 10:01:47
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 118 ms / 2,000 ms
コード長 232 bytes
コンパイル時間 324 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 78,208 KB
最終ジャッジ日時 2024-11-08 02:46:00
合計ジャッジ時間 7,459 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
51,840 KB
testcase_01 AC 99 ms
76,416 KB
testcase_02 AC 100 ms
76,416 KB
testcase_03 AC 98 ms
76,288 KB
testcase_04 AC 100 ms
76,160 KB
testcase_05 AC 101 ms
76,416 KB
testcase_06 AC 113 ms
77,312 KB
testcase_07 AC 114 ms
77,696 KB
testcase_08 AC 115 ms
77,312 KB
testcase_09 AC 113 ms
77,440 KB
testcase_10 AC 114 ms
77,440 KB
testcase_11 AC 114 ms
77,184 KB
testcase_12 AC 117 ms
77,568 KB
testcase_13 AC 114 ms
77,312 KB
testcase_14 AC 115 ms
77,440 KB
testcase_15 AC 114 ms
77,952 KB
testcase_16 AC 114 ms
77,952 KB
testcase_17 AC 114 ms
77,696 KB
testcase_18 AC 115 ms
77,312 KB
testcase_19 AC 114 ms
77,440 KB
testcase_20 AC 115 ms
77,312 KB
testcase_21 AC 114 ms
77,568 KB
testcase_22 AC 115 ms
77,568 KB
testcase_23 AC 115 ms
77,440 KB
testcase_24 AC 116 ms
77,696 KB
testcase_25 AC 115 ms
77,440 KB
testcase_26 AC 116 ms
78,208 KB
testcase_27 AC 113 ms
77,696 KB
testcase_28 AC 114 ms
77,696 KB
testcase_29 AC 114 ms
77,696 KB
testcase_30 AC 114 ms
77,696 KB
testcase_31 AC 114 ms
77,824 KB
testcase_32 AC 115 ms
77,696 KB
testcase_33 AC 118 ms
77,696 KB
testcase_34 AC 114 ms
78,208 KB
testcase_35 AC 116 ms
77,568 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = lambda: sys.stdin.readline().rstrip()

#  -----------------------  #

def main():
  n, m, k = map(int, input().split())
  return k%m if k%m < m-n else 0

print('\n'.join(str(main()) for _ in range(int(input()))))
0