結果

問題 No.810 割った余りの個数
ユーザー mzkrmzkr
提出日時 2019-05-06 05:40:47
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
MLE  
実行時間 -
コード長 285 bytes
コンパイル時間 512 ms
コンパイル使用メモリ 63,504 KB
実行使用メモリ 750,692 KB
最終ジャッジ日時 2024-06-26 21:15:23
合計ジャッジ時間 25,040 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 758 ms
13,756 KB
testcase_01 AC 762 ms
6,940 KB
testcase_02 AC 763 ms
6,940 KB
testcase_03 AC 762 ms
6,940 KB
testcase_04 AC 760 ms
6,944 KB
testcase_05 AC 762 ms
6,940 KB
testcase_06 AC 762 ms
6,940 KB
testcase_07 AC 763 ms
6,940 KB
testcase_08 AC 764 ms
6,940 KB
testcase_09 AC 763 ms
6,944 KB
testcase_10 AC 760 ms
6,940 KB
testcase_11 AC 762 ms
6,940 KB
testcase_12 AC 765 ms
6,944 KB
testcase_13 AC 763 ms
6,944 KB
testcase_14 AC 759 ms
6,940 KB
testcase_15 AC 761 ms
6,940 KB
testcase_16 AC 763 ms
6,944 KB
testcase_17 AC 760 ms
6,944 KB
testcase_18 AC 759 ms
6,940 KB
testcase_19 AC 759 ms
6,944 KB
testcase_20 AC 1,630 ms
44,504 KB
testcase_21 AC 1,491 ms
151,340 KB
testcase_22 AC 1,041 ms
8,852 KB
testcase_23 MLE -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>

using namespace std;

bool d[1000000000];

int main() {
  int l, r, m;
  cin >> l >> r >> m;
  for (int i = l; i <= r; ++i) {
    d[i % m] |= true;
  }

  int c = 0;
  for (int i = 0; i < 1000000000; ++i) {
    if (d[i]) c++;
  }
  cout << c << endl;
  return 0;
}
0