結果
問題 | No.105 arcの六角ボルト |
ユーザー | 37zigen |
提出日時 | 2016-05-20 11:53:50 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 621 bytes |
コンパイル時間 | 2,256 ms |
コンパイル使用メモリ | 74,916 KB |
実行使用メモリ | 63,696 KB |
最終ジャッジ日時 | 2024-10-06 11:15:04 |
合計ジャッジ時間 | 5,064 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
ソースコード
package yukicoder; import java.util.Scanner; public class Main{ public static void main(String[] args){ new Main().solve(); } void solve(){ Scanner sc=new Scanner(System.in); int t=sc.nextInt(); for(int time=0;time<t;time++){ double[] x=new double[6]; double[] y=new double[6]; double x1=-1; double y1=100; for(int i=0;i<6;i++){ x[i]=sc.nextDouble(); y[i]=sc.nextDouble(); double deg=Math.asin(y[i])*360.0*(1/(2.0*Math.PI)); if((0<=deg&°<54)||(180>=deg&°>=176)){ y1=y[i]; x1=x[i]; } } System.out.println(360.0*Math.asin(y1)*(1/(2.0*Math.PI))); } } }