結果

問題 No.795 Restrictions!!!!!!!!!!!!!!
ユーザー 37zigen37zigen
提出日時 2019-03-15 23:02:43
言語 Java21
(openjdk 21)
結果
AC  
実行時間 383 ms / 2,000 ms
コード長 561 bytes
コンパイル時間 2,314 ms
コンパイル使用メモリ 74,380 KB
実行使用メモリ 54,956 KB
最終ジャッジ日時 2024-07-01 21:29:19
合計ジャッジ時間 10,928 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 380 ms
54,956 KB
testcase_01 AC 373 ms
54,676 KB
testcase_02 AC 366 ms
54,652 KB
testcase_03 AC 363 ms
54,640 KB
testcase_04 AC 359 ms
54,344 KB
testcase_05 AC 371 ms
54,612 KB
testcase_06 AC 361 ms
54,756 KB
testcase_07 AC 376 ms
54,636 KB
testcase_08 AC 374 ms
54,912 KB
testcase_09 AC 370 ms
54,608 KB
testcase_10 AC 372 ms
54,848 KB
testcase_11 AC 366 ms
54,620 KB
testcase_12 AC 362 ms
54,380 KB
testcase_13 AC 363 ms
54,648 KB
testcase_14 AC 364 ms
54,568 KB
testcase_15 AC 371 ms
54,728 KB
testcase_16 AC 363 ms
54,284 KB
testcase_17 AC 368 ms
54,584 KB
testcase_18 AC 383 ms
54,752 KB
testcase_19 AC 370 ms
54,700 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.math.*;
import java.util.*;
import java.io.*;

public class Main{
    public static void main(String[] args){
	new Main().run();
    }

    void run(){
	Scanner sc=new Scanner(System.in);
	BigInteger a=new BigInteger(sc.next());
	BigInteger b=new BigInteger(sc.next());
	a=a.remainder(new BigInteger("2"));
	if(a.equals(new BigInteger("1"))){
	    b.subtract(new BigInteger("10"));
	}
	if(b.signum()==-1||b.remainder(new BigInteger("2")).equals(new BigInteger("1"))){
	    System.out.println("No");
	}else{
	    System.out.println("Yes");
	}
    }
}
0