結果

問題 No.894 二種類のバス
ユーザー bonKotsubonKotsu
提出日時 2021-12-18 00:24:14
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
RE  
実行時間 -
コード長 366 bytes
コンパイル時間 2,045 ms
コンパイル使用メモリ 200,172 KB
実行使用メモリ 6,816 KB
最終ジャッジ日時 2024-09-15 01:31:46
合計ジャッジ時間 4,571 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 RE -
testcase_01 RE -
testcase_02 RE -
testcase_03 RE -
testcase_04 RE -
testcase_05 RE -
testcase_06 RE -
testcase_07 RE -
testcase_08 RE -
testcase_09 RE -
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 2 ms
5,376 KB
testcase_16 RE -
testcase_17 AC 2 ms
5,376 KB
testcase_18 WA -
testcase_19 AC 2 ms
5,376 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function 'int main()':
main.cpp:18:11: warning: 'l' may be used uninitialized [-Wmaybe-uninitialized]
   18 |   ans -= t/l;
      |          ~^~
main.cpp:16:6: note: 'l' was declared here
   16 |   ll l;
      |      ^

ソースコード

diff #

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

#define ll long long
#define rep(i, n) for (int i = 0; i < (n); i++)
#define P pair<int, int>
#define LP pair<ll, ll>

const ll INF = 1e18;

int main() {
  ll t, a, b;
  cin >> t >> a >> b;
  ll ans = t/a+t/b;
  ll g = gcd(a,b);
  ll l;
  if (a/g < INF/b) l = a/g*b;
  ans -= t/l;
  cout << ans << endl;


  return 0;
}
0