結果

問題 No.105 arcの六角ボルト
コンテスト
ユーザー kyuna
提出日時 2018-11-02 23:54:59
言語 C++11
(gcc 15.2.0 + boost 1.89.0)
コンパイル:
g++-15 -O2 -lm -std=gnu++11 -Wuninitialized -DONLINE_JUDGE -o a.out _filename_
実行:
./a.out
結果
AC  
実行時間 15 ms / 5,000 ms
コード長 286 bytes
記録
記録タグの例:
初AC ショートコード 純ショートコード 純主流ショートコード 最速実行時間
コンパイル時間 208 ms
コンパイル使用メモリ 49,152 KB
実行使用メモリ 6,400 KB
最終ジャッジ日時 2026-05-14 18:22:11
合計ジャッジ時間 1,044 ms
ジャッジサーバーID
(参考情報)
judge2_1 / judge3_1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 1
権限があれば一括ダウンロードができます

ソースコード

diff #
raw source code

#include <cstdio>
#include <cmath>
 
int main() {
	double x, y, t;
	int n;
	scanf("%d", &n);
	while (n--) {
		scanf("%lf%lf", &x, &y);
		t = atan2(y, x) / atan(1) * 45 + 180;
		while (t > 51) t -= 60;
		for (int i = 0; i < 5; i++) scanf("%*lf%*lf");
		printf("%f\n", t);
	}
	return 0;
}
0