結果

問題 No.810 割った余りの個数
ユーザー a5ob7ra5ob7r
提出日時 2019-04-12 21:37:29
言語 C++11
(gcc 13.3.0)
結果
AC  
実行時間 2 ms / 2,000 ms
コード長 343 bytes
コンパイル時間 414 ms
コンパイル使用メモリ 57,380 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-09-14 17:35:47
合計ジャッジ時間 1,357 ms
ジャッジサーバーID
(参考情報)
judge5 / judge6
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 30
権限があれば一括ダウンロードができます

ソースコード

diff #

/* https://yukicoder.me/problems/no/810 */

#include <iostream>
#include <vector>

/* {{{ Variables */
int L, R, M;
/* }}} */

int main(int argc, char *argv[])
{
  /* {{{ Input */
  std::cin >> L >> R >> M;
  /* }}} */

  /* {{{ Output */
  int tmp = (R-L+1)/M != 0 ? M : (R-L+1)%M;
  std::cout << tmp << std::endl;
  /* }}} */

  return 0;
}
0