結果

問題 No.538 N.G.S.
ユーザー 193s193s
提出日時 2017-06-30 22:41:13
言語 C++11
(gcc 13.3.0)
結果
AC  
実行時間 2 ms / 2,000 ms
コード長 780 bytes
コンパイル時間 746 ms
コンパイル使用メモリ 81,924 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-09-24 23:41:17
合計ジャッジ時間 2,115 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 4
other AC * 51
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <cstdio>
#include <iostream>
#include <algorithm>
#include <string>
#include <cstring>
#include <vector>
#include <queue>
#include <set>
#include <map>
#include <cmath>
#include <iomanip>
using namespace std;

typedef pair<int, int> P;
#define rep(i, n) for (int i=0; i<(n); i++)
#define all(c) (c).begin(), (c).end()
#define uniq(c) c.erase(unique(all(c)), (c).end())
#define _1 first
#define _2 second
#define pb push_back
#define INF 1145141919
#define MOD 1000000007

signed main() {
  ios::sync_with_stdio(false); cin.tie(0);
  long long b1, b2, b3;
  cin >> b1 >> b2 >> b3;
  //int r = (double)(b2 - b3) / (double)(b1 - b2);
  long long d = (b2*(b1-b2)-(b2-b3)*b1);
  cout << (long long)round((long double)((b2-b3)*b3+d)/(long double)(b1-b2)) <<"\n";
  return 0;
}
0