結果
問題 | No.3098 tan 2 |
ユーザー | Asahi |
提出日時 | 2023-03-31 21:26:19 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 133 ms / 2,000 ms |
コード長 | 1,101 bytes |
コンパイル時間 | 2,320 ms |
コンパイル使用メモリ | 78,008 KB |
実行使用メモリ | 41,560 KB |
最終ジャッジ日時 | 2024-09-22 23:58:01 |
合計ジャッジ時間 | 4,344 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 133 ms
41,200 KB |
testcase_01 | AC | 125 ms
41,452 KB |
testcase_02 | AC | 129 ms
41,320 KB |
testcase_03 | AC | 125 ms
41,260 KB |
testcase_04 | AC | 125 ms
41,080 KB |
testcase_05 | AC | 128 ms
41,156 KB |
testcase_06 | AC | 125 ms
41,192 KB |
testcase_07 | AC | 125 ms
41,560 KB |
testcase_08 | AC | 125 ms
41,456 KB |
testcase_09 | AC | 125 ms
41,284 KB |
testcase_10 | AC | 125 ms
41,380 KB |
testcase_11 | AC | 127 ms
41,188 KB |
ソースコード
import java.util.*; import java.io.*; import java.math.*; class Main{ static void solve(){ int n = ni(); double rad = Math.toRadians(n); double tan = Math.tan(rad); output.print(isRational(tan)? "Yes" : "No"); } private static boolean isRational(double x) { if (Double.isNaN(x)) return false; double fraction = x % 1; return fraction == 0 || fraction == 0.5 || fraction == -0.5; } // - - - - - - - - - - - - - - - - - - - - - - - - - - - - // static int ni(){ return Integer.parseInt(sc.next()); } static long nl(){ return Long.parseLong(sc.next()); } static double nd(){ return Double.parseDouble(sc.next()); } static String ns(){ return sc.next(); } static BigInteger bi(){ return sc.nextBigInteger(); } static BigDecimal bd(){ return sc.nextBigDecimal(); } static PrintWriter output; static Scanner sc ; public static void main(String[] args){ output = new PrintWriter(System.out); sc = new Scanner(System.in); solve(); output.flush(); } }