結果

問題 No.105 arcの六角ボルト
ユーザー cielciel
提出日時 2014-12-16 23:57:54
言語 C90
(gcc 11.4.0)
結果
AC  
実行時間 52 ms / 5,000 ms
コード長 386 bytes
コンパイル時間 583 ms
コンパイル使用メモリ 24,832 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-06-26 03:09:06
合計ジャッジ時間 1,100 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 52 ms
5,248 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.c: In function ‘main’:
main.c:7:13: warning: ignoring return value of ‘scanf’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
    7 |         for(scanf("%d",&T);T--;){
      |             ^~~~~~~~~~~~~~
main.c:11:25: warning: ignoring return value of ‘scanf’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   11 |                         scanf("%Lf%Lf",&x,&y);
      |                         ^~~~~~~~~~~~~~~~~~~~~

ソースコード

diff #

#include <stdio.h>
#include <math.h>

int main(){
	const long double pi=acosl(-1);
	int T;
	for(scanf("%d",&T);T--;){
		long double X=0,Y=0,x,y;
		int i=0;
		for(;i<6;i++){
			scanf("%Lf%Lf",&x,&y);
			if(x>=0&&y>=0&&x>X)X=x,Y=y;
		}
		long double z=X/sqrtl(X*X+Y*Y);
		if(z>1)z=1;
		long double ret=180*acosl(z)/pi;
		if(ret>55)ret-=60;
		printf("%.9Lf\n",ret);
	}
}
0