結果

問題 No.810 割った余りの個数
ユーザー stngstng
提出日時 2022-07-06 14:37:17
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 127 bytes
コンパイル時間 286 ms
コンパイル使用メモリ 82,024 KB
実行使用メモリ 54,180 KB
最終ジャッジ日時 2024-06-01 10:11:03
合計ジャッジ時間 2,570 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,864 KB
testcase_01 AC 38 ms
53,168 KB
testcase_02 WA -
testcase_03 AC 39 ms
53,720 KB
testcase_04 AC 38 ms
52,220 KB
testcase_05 AC 38 ms
52,096 KB
testcase_06 AC 39 ms
52,944 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 39 ms
52,396 KB
testcase_11 AC 38 ms
52,528 KB
testcase_12 AC 38 ms
52,952 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 39 ms
51,624 KB
testcase_17 WA -
testcase_18 AC 40 ms
52,620 KB
testcase_19 AC 37 ms
52,072 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 37 ms
52,432 KB
testcase_28 WA -
testcase_29 AC 37 ms
53,180 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

l,r,m = map(int,input().split())
if (l-r+1) >= m:
    print(m)
else:
    end = r % m
    srt = l % m
    print(abs(end-srt)+1)
0