結果
問題 | No.1465 Archaea |
ユーザー | tenten |
提出日時 | 2023-07-14 08:34:51 |
言語 | Java21 (openjdk 21) |
結果 |
TLE
|
実行時間 | - |
コード長 | 2,353 bytes |
コンパイル時間 | 4,000 ms |
コンパイル使用メモリ | 94,876 KB |
実行使用メモリ | 44,288 KB |
最終ジャッジ日時 | 2024-09-15 16:36:12 |
合計ジャッジ時間 | 9,647 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 51 ms
42,444 KB |
testcase_01 | AC | 51 ms
36,652 KB |
testcase_02 | AC | 70 ms
37,788 KB |
testcase_03 | AC | 51 ms
37,016 KB |
testcase_04 | AC | 51 ms
36,620 KB |
testcase_05 | AC | 51 ms
36,716 KB |
testcase_06 | AC | 52 ms
36,816 KB |
testcase_07 | AC | 52 ms
36,848 KB |
testcase_08 | AC | 53 ms
37,016 KB |
testcase_09 | TLE | - |
testcase_10 | AC | 52 ms
37,044 KB |
testcase_11 | AC | 52 ms
36,888 KB |
testcase_12 | AC | 51 ms
36,704 KB |
testcase_13 | AC | 53 ms
36,668 KB |
testcase_14 | TLE | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
ソースコード
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 value, int count) { if (value == 1) { return true; } if (value < 1 || count <= 0) { return false; } if (value % 2 == 0) { if (check(value / 2, count - 1)) { return true; } } if (check(value - 3, count - 1)) { return true; } return false; } static int getCount(int a, int b) { int count = 1; while (a > 0 || b > 0) { if (a % 2 == 1) { if (b % 2 == 0) { count = 0; } else { count *= 2; } } a >>= 1; b >>= 1; } return count; } } 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(); } }