結果
問題 | No.894 二種類のバス |
ユーザー | ngtkana |
提出日時 | 2019-09-27 21:31:51 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,345 bytes |
コンパイル時間 | 1,993 ms |
コンパイル使用メモリ | 200,228 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-09-24 20:50:51 |
合計ジャッジ時間 | 2,584 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | AC | 2 ms
5,376 KB |
testcase_11 | AC | 2 ms
5,376 KB |
testcase_12 | AC | 2 ms
5,376 KB |
testcase_13 | AC | 2 ms
5,376 KB |
testcase_14 | WA | - |
testcase_15 | AC | 1 ms
5,376 KB |
testcase_16 | WA | - |
testcase_17 | AC | 2 ms
5,376 KB |
testcase_18 | WA | - |
testcase_19 | AC | 2 ms
5,376 KB |
ソースコード
#include <bits/stdc++.h> #define loop(n) for (int ngtkana_is_genius = 0; ngtkana_is_genius < int(n); ngtkana_is_genius++) #define rep(i, begin, end) for(int i = int(begin); i < int(end); i++) #define all(v) v.begin(), v.end() #define rand(l, r) std::uniform_int_distribution<>(l, r)(mt) #define lint long long auto cmn = [](auto& a, auto b){if (a > b) {a = b; return true;} return false;}; auto cmx = [](auto& a, auto b){if (a < b) {a = b; return true;} return false;}; void debug_impl() { std::cerr << std::endl; } template <typename Head, typename... Tail> void debug_impl(Head head, Tail... tail){ std::cerr << " " << head; debug_impl(tail...); } #ifndef STOPIT #define debug(...)\ std::cerr << std::boolalpha << "[" << #__VA_ARGS__ << "]:";\ debug_impl(__VA_ARGS__);\ std::cerr << std::noboolalpha; #else #define debug 0; #endif template<typename T> inline T gcd (T a, T b) { if (a < 0) a = -a; if (b < 0) b = -b; if (a < b) std::swap(a, b); while (b) { a %= b; std::swap(a, b); } return a; } int main() { std::cin.tie(0); std::cin.sync_with_stdio(false); lint t, a, b; std::cin >> t >> a >> b; auto ga = a / gcd(a, b); lint l = -1; if (ga <= t / b) { l = ga * b; } else { l = t + 1; } auto ret = 0LL; ret += t / a + t / b - t / l; std::cout << ret << std::endl; return 0; }