結果
問題 | No.1486 ロボット |
ユーザー |
![]() |
提出日時 | 2021-05-30 05:07:55 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 17 ms / 2,000 ms |
コード長 | 882 bytes |
コンパイル時間 | 1,682 ms |
コンパイル使用メモリ | 166,536 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-11-08 20:40:22 |
合計ジャッジ時間 | 2,747 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 17 |
ソースコード
#include <bits/stdc++.h>#define NIL (-1)#define ll long longusing namespace std;const int64_t MOD = 1e9 + 7;const int INF = INT_MAX;const double PI = acos(-1.0);int gcd(int a, int b) {if (!b) return a;else return gcd(b, a % b);}int main() {ll A, B, C, D, E;cin >> A >> B >> C >> D >> E;int GCD = gcd(A + B, C + D);int LCM = (A + B) * (C + D) / GCD;//cout << LCM << endl;ll ans = 0;int pt = 0;for (int i = 0; i < LCM; i++) {int a = i % (A + B);int b = i % (C + D);if ((a >= 0 && a < A) && (b >= 0 && b < C)) pt++;}ans += pt * (E / LCM);//cout << ans << endl;for (int i = 0; i < E%LCM; i++) {int a = i % (A + B);int b = i % (C + D);/*if (a >= 0 && a < A) cout << "a:" << i << endl;if (b >= 0 && b < C) cout << "b:" << i << endl;*/if ((a >= 0 && a < A) && (b >= 0 && b < C)) ans++;}cout << ans << endl;return 0;}