結果
問題 | No.105 arcの六角ボルト |
ユーザー | chocorusk |
提出日時 | 2020-10-03 12:01:44 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 659 bytes |
コンパイル時間 | 2,093 ms |
コンパイル使用メモリ | 74,872 KB |
実行使用メモリ | 61,752 KB |
最終ジャッジ日時 | 2024-07-18 04:17:05 |
合計ジャッジ時間 | 3,713 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
ソースコード
import java.io.PrintWriter; import java.util.Scanner; public class Main{ public static void main(String[] args) { Scanner scanner=new Scanner(System.in); PrintWriter out=new PrintWriter(System.out); int T=Integer.parseInt(scanner.next()); for(int z=0; z<T; z++) { double ans=0; final double PI=Math.PI; final double EPS=1e-10; for(int i=0; i<6; i++) { double x=Double.parseDouble(scanner.next()); double y=Double.parseDouble(scanner.next()); double t=Math.atan2(y, x); t-=PI/3; if(t>-EPS && t<PI/3) { ans=t/PI*180; } } out.println(String.format("%.7f", ans)); } out.close(); scanner.close(); } }