結果

問題 No.810 割った余りの個数
ユーザー NoviNovi
提出日時 2020-06-15 00:40:01
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 103 bytes
コンパイル時間 104 ms
コンパイル使用メモリ 10,532 KB
実行使用メモリ 8,028 KB
最終ジャッジ日時 2023-09-10 17:51:30
合計ジャッジ時間 2,055 ms
ジャッジサーバーID
(参考情報)
judge15 / judge14
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 17 ms
7,776 KB
testcase_01 AC 16 ms
7,960 KB
testcase_02 WA -
testcase_03 AC 15 ms
7,800 KB
testcase_04 AC 15 ms
7,812 KB
testcase_05 AC 16 ms
7,800 KB
testcase_06 AC 15 ms
7,856 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 16 ms
7,844 KB
testcase_11 AC 16 ms
7,856 KB
testcase_12 AC 16 ms
7,968 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 16 ms
7,852 KB
testcase_17 WA -
testcase_18 AC 16 ms
7,852 KB
testcase_19 AC 16 ms
7,804 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 AC 16 ms
7,840 KB
testcase_28 WA -
testcase_29 AC 15 ms
7,968 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

l,r,m=map(int,input().split())
l%=m
r%=m

if l>r:
    print(min(m,l-r+1))
else:
    print(min(m,r-l+1))
0