結果

問題 No.760 Where am I moved to?
ユーザー koba-e964koba-e964
提出日時 2019-03-17 02:44:58
言語 C++11
(gcc 11.4.0)
結果
WA  
(最新)
J_TLE  
(最初)
実行時間 -
コード長 1,227 bytes
コンパイル時間 761 ms
コンパイル使用メモリ 96,896 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-05-04 00:05:00
合計ジャッジ時間 6,509 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
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 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <algorithm>
#include <cassert>
#include <cctype>
#include <cmath>
#include <cstdio>
#include <cstdlib>
#include <ctime>
#include <deque>
#include <functional>
#include <iomanip>
#include <iostream>
#include <list>
#include <map>
#include <queue>
#include <random>
#include <set>
#include <sstream>
#include <string>
#include <utility>
#include <vector>
#include <complex>

#define REP(i,s,n) for(int i=(int)(s);i<(int)(n);i++)
#define DEBUGP(val) cerr << #val << "=" << val << "\n"

using namespace std;
typedef long long int ll;
typedef vector<int> VI;
typedef vector<ll> VL;
typedef pair<int, int> PI;

typedef complex<double> comp;

int main(void) {
  double pi = acos(-1);
  ios::sync_with_stdio(false);
  cin.tie(0);
  double xa, ya, ta;
  cin >> xa >> ya >> ta;
  ta *= pi / 180;
  comp a(xa, ya);
  cin >> xa >> ya;
  comp p11(xa, ya);
  cin >> xa >> ya;
  comp p12(xa, ya);
  cin >> xa >> ya;
  comp p21(xa, ya);
  cin >> xa >> ya;
  comp p22(xa, ya);
  double theta = ta + arg(p12 - p11);
  comp real1 = a + polar(1.0, ta) * p11;
  double tb = theta - arg(p22 - p21);
  comp b = real1 - polar(1.0, tb) * p21;
  cout << setprecision(15) << b.real() << " " << b.imag() << " "
       << tb * 180 / pi << endl;
}
0