結果
| 問題 |
No.105 arcの六角ボルト
|
| コンテスト | |
| ユーザー |
holeguma
|
| 提出日時 | 2015-08-19 22:34:07 |
| 言語 | Java (openjdk 23) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 820 bytes |
| コンパイル時間 | 1,942 ms |
| コンパイル使用メモリ | 78,336 KB |
| 実行使用メモリ | 48,316 KB |
| 最終ジャッジ日時 | 2024-07-18 10:38:46 |
| 合計ジャッジ時間 | 3,197 ms |
|
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | WA * 1 |
ソースコード
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.0;
double y=0.0;
int num=Integer.parseInt(br.readLine());
while(num-->0){
while((line=br.readLine())!=null){
if(line.isEmpty()) continue;
st=new StringTokenizer(line);
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();
}
}
holeguma