結果
問題 | No.105 arcの六角ボルト |
ユーザー | holeguma |
提出日時 | 2015-08-19 22:27:37 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 786 bytes |
コンパイル時間 | 2,241 ms |
コンパイル使用メモリ | 74,996 KB |
実行使用メモリ | 48,072 KB |
最終ジャッジ日時 | 2024-07-18 10:38:16 |
合計ジャッジ時間 | 2,928 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
ソースコード
import java.io.*; import java.util.StringTokenizer; class Main{ static final PrintWriter out=new PrintWriter(System.out); static final int INF=Integer.MAX_VALUE; public static void main(String[] args) throws IOException{ BufferedReader br=new BufferedReader(new InputStreamReader(System.in)); StringTokenizer st; String line=""; double x=0,y; int num=Integer.parseInt(br.readLine()); while(num-->0){ while((line=br.readLine())!=null){ st=new StringTokenizer(br.readLine()); x=Double.parseDouble(st.nextToken()); y=Double.parseDouble(st.nextToken()); for(int i=1;i<6;i++){ st=new StringTokenizer(br.readLine()); if(x<=1/2||y<0){ x=Double.parseDouble(st.nextToken()); y=Double.parseDouble(st.nextToken()); } } } out.println(Math.toDegrees(Math.acos(x))); } out.flush(); } }