結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 73 ms
71,076 KB
testcase_01 AC 74 ms
71,264 KB
testcase_02 AC 74 ms
71,220 KB
testcase_03 AC 78 ms
71,000 KB
testcase_04 AC 73 ms
70,980 KB
testcase_05 AC 73 ms
70,904 KB
testcase_06 AC 72 ms
71,240 KB
testcase_07 AC 74 ms
71,224 KB
testcase_08 AC 74 ms
71,248 KB
testcase_09 AC 74 ms
71,228 KB
testcase_10 AC 74 ms
71,100 KB
testcase_11 AC 73 ms
70,904 KB
testcase_12 AC 80 ms
71,144 KB
testcase_13 AC 80 ms
71,060 KB
testcase_14 AC 79 ms
71,304 KB
testcase_15 AC 78 ms
71,212 KB
testcase_16 AC 79 ms
70,936 KB
testcase_17 AC 78 ms
70,988 KB
testcase_18 AC 77 ms
71,032 KB
testcase_19 AC 73 ms
71,208 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, r+1)}))
0