結果
問題 | No.105 arcの六角ボルト |
ユーザー | akakimidori |
提出日時 | 2017-01-18 00:57:03 |
言語 | C90 (gcc 11.4.0) |
結果 |
AC
|
実行時間 | 22 ms / 5,000 ms |
コード長 | 444 bytes |
コンパイル時間 | 191 ms |
コンパイル使用メモリ | 23,552 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-06-26 03:14:34 |
合計ジャッジ時間 | 708 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
コンパイルメッセージ
main.c: In function ‘run’: main.c:7:3: warning: ignoring return value of ‘scanf’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 7 | scanf("%d",&t); | ^~~~~~~~~~~~~~ main.c:15:7: warning: ignoring return value of ‘scanf’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 15 | scanf("%lf%lf",X+j,Y+j); | ^~~~~~~~~~~~~~~~~~~~~~~
ソースコード
#include<stdio.h> #include<stdlib.h> #include<math.h> void run(void){ int t; scanf("%d",&t); int i; for(i=0;i<t;i++){ double X[6]; double Y[6]; int j; for(j=0;j<6;j++){ scanf("%lf%lf",X+j,Y+j); } for(j=0;j<6;j++){ if(X[j]>=0.5+1e-9 && Y[j]>=0-1e-12) break; } double ans=asin(Y[j]+1e-11)*(180/M_PI); printf("%.7lf\n",ans); } return; } int main(void){ run(); return 0; }