結果

問題 No.2022 Antilogarithm
ユーザー AsahiAsahi
提出日時 2023-01-08 14:01:01
言語 Java21
(openjdk 21)
結果
AC  
実行時間 144 ms / 2,000 ms
コード長 845 bytes
コンパイル時間 2,405 ms
コンパイル使用メモリ 75,552 KB
実行使用メモリ 54,840 KB
最終ジャッジ日時 2024-12-15 16:47:38
合計ジャッジ時間 12,451 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 127 ms
54,048 KB
testcase_01 AC 125 ms
54,192 KB
testcase_02 AC 128 ms
54,088 KB
testcase_03 AC 121 ms
54,056 KB
testcase_04 AC 119 ms
54,104 KB
testcase_05 AC 109 ms
53,028 KB
testcase_06 AC 121 ms
54,244 KB
testcase_07 AC 124 ms
54,128 KB
testcase_08 AC 121 ms
54,840 KB
testcase_09 AC 127 ms
54,156 KB
testcase_10 AC 126 ms
54,056 KB
testcase_11 AC 124 ms
54,132 KB
testcase_12 AC 123 ms
54,192 KB
testcase_13 AC 114 ms
53,216 KB
testcase_14 AC 125 ms
54,188 KB
testcase_15 AC 121 ms
54,028 KB
testcase_16 AC 127 ms
54,044 KB
testcase_17 AC 125 ms
54,048 KB
testcase_18 AC 123 ms
54,112 KB
testcase_19 AC 128 ms
53,996 KB
testcase_20 AC 134 ms
53,980 KB
testcase_21 AC 131 ms
54,012 KB
testcase_22 AC 126 ms
54,048 KB
testcase_23 AC 129 ms
54,008 KB
testcase_24 AC 125 ms
54,028 KB
testcase_25 AC 126 ms
53,760 KB
testcase_26 AC 126 ms
54,136 KB
testcase_27 AC 127 ms
54,100 KB
testcase_28 AC 125 ms
53,948 KB
testcase_29 AC 124 ms
53,840 KB
testcase_30 AC 129 ms
54,128 KB
testcase_31 AC 127 ms
54,112 KB
testcase_32 AC 125 ms
53,820 KB
testcase_33 AC 113 ms
52,792 KB
testcase_34 AC 123 ms
54,052 KB
testcase_35 AC 123 ms
53,940 KB
testcase_36 AC 116 ms
53,768 KB
testcase_37 AC 123 ms
53,968 KB
testcase_38 AC 113 ms
52,792 KB
testcase_39 AC 121 ms
54,108 KB
testcase_40 AC 122 ms
54,160 KB
testcase_41 AC 121 ms
54,268 KB
testcase_42 AC 130 ms
53,948 KB
testcase_43 AC 127 ms
54,228 KB
testcase_44 AC 131 ms
54,036 KB
testcase_45 AC 126 ms
53,844 KB
testcase_46 AC 127 ms
53,964 KB
testcase_47 AC 125 ms
54,020 KB
testcase_48 AC 123 ms
53,972 KB
testcase_49 AC 109 ms
53,224 KB
testcase_50 AC 120 ms
53,984 KB
testcase_51 AC 129 ms
54,116 KB
testcase_52 AC 129 ms
54,096 KB
testcase_53 AC 123 ms
54,116 KB
testcase_54 AC 123 ms
54,112 KB
testcase_55 AC 125 ms
54,060 KB
testcase_56 AC 124 ms
53,912 KB
testcase_57 AC 127 ms
53,972 KB
testcase_58 AC 131 ms
53,944 KB
testcase_59 AC 112 ms
53,220 KB
testcase_60 AC 143 ms
52,596 KB
testcase_61 AC 144 ms
53,864 KB
testcase_62 AC 112 ms
53,048 KB
testcase_63 AC 127 ms
53,856 KB
testcase_64 AC 121 ms
54,240 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.io.*;
import java.math.*;
 
public class Main{
    public static BufferedReader buff = new BufferedReader(new InputStreamReader(System.in));
    public static PrintWriter output = new PrintWriter(System.out);
    public static Scanner sc = new Scanner(System.in);
    public static final int INFI = Integer.MAX_VALUE;
    public static final long INFL = Long.MAX_VALUE;
    public static final int MOD = 1000000007;
    public static final int [] dy4 = {0,1,0,-1};
    public static final int [] dx4 = {1,0,-1,0};
    public static void main(String[] args) throws IOException{
        StringTokenizer st;
        //st = new StringTokenizer(buff.readLine());
        long A = sc.nextLong();
        long B = sc.nextLong();
        output.print(Math.abs(A) < Math.abs(B)?"Yes":"No");
        output.flush();
    }
}
0