結果
問題 | No.105 arcの六角ボルト |
ユーザー | Grenache |
提出日時 | 2015-11-23 19:14:25 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 1,663 ms / 5,000 ms |
コード長 | 599 bytes |
コンパイル時間 | 3,789 ms |
コンパイル使用メモリ | 74,568 KB |
実行使用メモリ | 53,632 KB |
最終ジャッジ日時 | 2024-09-13 17:17:34 |
合計ジャッジ時間 | 7,291 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
ソースコード
import java.util.Scanner; public class Main_yukicoder105 { public static void main(String[] args) { Scanner sc = new Scanner(System.in); int t = sc.nextInt(); for (int tcase = 0; tcase < t; tcase++) { double ret = 0; for (int i = 0; i < 6; i++) { double x = sc.nextDouble(); double y = sc.nextDouble(); double tmp = Math.atan2(y, x) / Math.PI * 180; if (tmp >= 0 && tmp <= 50) { ret = tmp; } } System.out.printf("%.7f\n", ret); } sc.close(); } }