結果

問題 No.2022 Antilogarithm
ユーザー Asahi
提出日時 2023-01-08 14:01:01
言語 Java
(openjdk 23)
結果
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
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 62
権限があれば一括ダウンロードができます

ソースコード

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