結果

問題 No.1486 ロボット
ユーザー fukafukatanifukafukatani
提出日時 2021-04-23 21:47:42
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 24 ms / 2,000 ms
コード長 834 bytes
コンパイル時間 934 ms
コンパイル使用メモリ 104,020 KB
実行使用メモリ 4,380 KB
最終ジャッジ日時 2023-09-17 12:03:13
合計ジャッジ時間 1,996 ms
ジャッジサーバーID
(参考情報)
judge12 / judge11
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
4,376 KB
testcase_01 AC 2 ms
4,380 KB
testcase_02 AC 1 ms
4,380 KB
testcase_03 AC 1 ms
4,380 KB
testcase_04 AC 2 ms
4,376 KB
testcase_05 AC 2 ms
4,376 KB
testcase_06 AC 17 ms
4,380 KB
testcase_07 AC 18 ms
4,376 KB
testcase_08 AC 7 ms
4,380 KB
testcase_09 AC 4 ms
4,376 KB
testcase_10 AC 24 ms
4,380 KB
testcase_11 AC 23 ms
4,376 KB
testcase_12 AC 10 ms
4,376 KB
testcase_13 AC 7 ms
4,380 KB
testcase_14 AC 7 ms
4,380 KB
testcase_15 AC 3 ms
4,376 KB
testcase_16 AC 5 ms
4,376 KB
testcase_17 AC 5 ms
4,380 KB
testcase_18 AC 8 ms
4,376 KB
testcase_19 AC 4 ms
4,380 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <stdio.h>

#include <algorithm>
#include <cmath>
#include <iostream>
#include <map>
#include <set>
#include <unordered_map>
#include <vector>

#define ALL(obj) (obj).begin()(obj).end()
#define DEBUG(x) cerr << #x << " = " << x << endl
#define ll long long

using namespace std;

int main() {
  ll a;
  ll b;
  ll c;
  ll d;
  ll e;
  std::cin >> a >> b >> c >> d >> e;

  const ll both = (a + b) * (c + d);
  ll count = 0;
  for (ll i = 0; i < both; ++i) {
    const bool ok1 = (i % (a + b)) < a;
    const bool ok2 = (i % (c + d)) < c;
    if (ok1 && ok2) {
      count += 1;
    }
  }
  ll ans = (e / both) * count;
  e %= both;
  for (ll i = 0; i < e; ++i) {
    const bool ok1 = (i % (a + b)) < a;
    const bool ok2 = (i % (c + d)) < c;
    if (ok1 && ok2) {
      ans += 1;
    }
  }
  std::cout << ans << std::endl;
}
0