結果
問題 | No.1486 ロボット |
ユーザー | fukafukatani |
提出日時 | 2021-04-23 21:47:42 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 23 ms / 2,000 ms |
コード長 | 834 bytes |
コンパイル時間 | 963 ms |
コンパイル使用メモリ | 104,500 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-07-04 07:53:12 |
合計ジャッジ時間 | 1,740 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | AC | 2 ms
5,376 KB |
testcase_04 | AC | 2 ms
5,376 KB |
testcase_05 | AC | 2 ms
5,376 KB |
testcase_06 | AC | 17 ms
5,376 KB |
testcase_07 | AC | 17 ms
5,376 KB |
testcase_08 | AC | 7 ms
5,376 KB |
testcase_09 | AC | 4 ms
5,376 KB |
testcase_10 | AC | 23 ms
5,376 KB |
testcase_11 | AC | 22 ms
5,376 KB |
testcase_12 | AC | 10 ms
5,376 KB |
testcase_13 | AC | 7 ms
5,376 KB |
testcase_14 | AC | 7 ms
5,376 KB |
testcase_15 | AC | 3 ms
5,376 KB |
testcase_16 | AC | 5 ms
5,376 KB |
testcase_17 | AC | 5 ms
5,376 KB |
testcase_18 | AC | 7 ms
5,376 KB |
testcase_19 | AC | 3 ms
5,376 KB |
ソースコード
#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; }