結果

問題 No.1486 ロボット
ユーザー eve__fuyukieve__fuyuki
提出日時 2024-09-06 03:20:30
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 5 ms / 2,000 ms
コード長 696 bytes
コンパイル時間 2,380 ms
コンパイル使用メモリ 204,396 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-09-06 03:20:34
合計ジャッジ時間 3,566 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

void fast_io() {
	ios_base::sync_with_stdio(false);
	cin.tie(nullptr);
}

int main() {
	fast_io();
	int a, b, c, d, e;
	cin >> a >> b >> c >> d >> e;
	int l = (a + b) / gcd(a + b, c + d) * (c + d);
	vector<bool> move(l, true);
	for (int i = 0; i < l / (a + b); i++) {
		for (int j = a; j < a + b; j++) {
			move[i * (a + b) + j] = false;
		}
	}
	for (int i = 0; i < l / (c + d); i++) {
		for (int j = c; j < c + d; j++) {
			move[i * (c + d) + j] = false;
		}
	}
	int move_sum = 0;
	for (int i = 0; i < l; i++) {
		move_sum += move[i];
	}
	int ans = move_sum * (e / l);
	for (int i = 0; i < e % l; i++) {
		ans += move[i];
	}
	cout << ans << endl;
}
0