結果

問題 No.1465 Archaea
ユーザー tentententen
提出日時 2023-11-22 12:45:21
言語 Java21
(openjdk 21)
結果
TLE  
実行時間 -
コード長 2,385 bytes
コンパイル時間 3,022 ms
コンパイル使用メモリ 83,776 KB
実行使用メモリ 62,544 KB
最終ジャッジ日時 2023-11-22 12:45:29
合計ジャッジ時間 8,069 ms
ジャッジサーバーID
(参考情報)
judge15 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 56 ms
60,752 KB
testcase_01 AC 57 ms
53,980 KB
testcase_02 AC 79 ms
54,884 KB
testcase_03 AC 57 ms
53,972 KB
testcase_04 AC 58 ms
54,000 KB
testcase_05 AC 56 ms
53,928 KB
testcase_06 AC 56 ms
53,980 KB
testcase_07 AC 55 ms
54,008 KB
testcase_08 AC 55 ms
53,988 KB
testcase_09 TLE -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;
import java.util.stream.*;

public class Main {
    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner();
        if (check(sc.nextInt(), sc.nextInt())) {
            System.out.println("YES");
        } else {
            System.out.println("NO");
        }
    }
    
    static boolean check(int x, int count) {
        if (count < 0) {
            return false;
        }
        if (x <= 0) {
            return false;
        }
        if (x == 1) {
            return true;
        }
        if (x % 2 == 0) {
            if (check(x / 2, count - 1)) {
                return true;
            }
        }
        return check(x - 3, count - 1);
    }
    
    static long getCount(int a, int b) {
        int count = 0;
        while (a > 0 || b > 0) {
            if (a % 2 == 0) {
                if (b % 2 == 1) {
                    count++;
                }
            } else {
                if (b % 2 == 0) {
                    return 0;
                }
            }
            a >>= 1;
            b >>= 1;
        }
        return (1L << (count - 1));
    }
}
class Utilities {
    static String arrayToLineString(Object[] arr) {
        return Arrays.stream(arr).map(x -> x.toString()).collect(Collectors.joining("\n"));
    }
    
    static String arrayToLineString(int[] arr) {
        return String.join("\n", Arrays.stream(arr).mapToObj(String::valueOf).toArray(String[]::new));
    }
}
class Scanner {
    BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
    StringTokenizer st = new StringTokenizer("");
    StringBuilder sb = new StringBuilder();
    
    public Scanner() throws Exception {
        
    }
    
    public int nextInt() throws Exception {
        return Integer.parseInt(next());
    }
    
    public long nextLong() throws Exception {
        return Long.parseLong(next());
    }
    
    public double nextDouble() throws Exception {
        return Double.parseDouble(next());
    }
    
    public int[] nextIntArray() throws Exception {
        return Stream.of(br.readLine().split(" ")).mapToInt(Integer::parseInt).toArray();
    }
    
    public String next() throws Exception {
        while (!st.hasMoreTokens()) {
            st = new StringTokenizer(br.readLine());
        }
        return st.nextToken();
    }
    
}
0