結果

問題 No.810 割った余りの個数
ユーザー MarioMario
提出日時 2019-06-25 22:50:11
言語 PyPy3
(7.3.15)
結果
MLE  
実行時間 -
コード長 89 bytes
コンパイル時間 778 ms
コンパイル使用メモリ 86,576 KB
実行使用メモリ 847,368 KB
最終ジャッジ日時 2023-09-05 15:28:11
合計ジャッジ時間 5,127 ms
ジャッジサーバーID
(参考情報)
judge11 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 73 ms
71,112 KB
testcase_01 AC 80 ms
71,276 KB
testcase_02 AC 75 ms
71,136 KB
testcase_03 AC 73 ms
71,140 KB
testcase_04 AC 73 ms
71,320 KB
testcase_05 AC 74 ms
71,032 KB
testcase_06 AC 74 ms
71,260 KB
testcase_07 AC 74 ms
71,080 KB
testcase_08 AC 73 ms
71,024 KB
testcase_09 AC 73 ms
71,312 KB
testcase_10 AC 74 ms
71,244 KB
testcase_11 AC 73 ms
71,296 KB
testcase_12 AC 73 ms
71,176 KB
testcase_13 AC 71 ms
71,288 KB
testcase_14 AC 72 ms
71,120 KB
testcase_15 AC 71 ms
71,264 KB
testcase_16 AC 72 ms
71,252 KB
testcase_17 AC 72 ms
71,088 KB
testcase_18 AC 72 ms
71,120 KB
testcase_19 AC 73 ms
71,124 KB
testcase_20 MLE -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

l, r, m = map(int, input().split())
print(len({x % m for x in range(l, min(r, l+m)+1)}))
0