結果
問題 | No.2063 ±2^k operations (easy) |
ユーザー | tenten |
提出日時 | 2022-09-05 14:01:51 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 113 ms / 2,000 ms |
コード長 | 1,903 bytes |
コンパイル時間 | 2,681 ms |
コンパイル使用メモリ | 78,428 KB |
実行使用メモリ | 64,244 KB |
最終ジャッジ日時 | 2024-11-20 13:54:46 |
合計ジャッジ時間 | 5,404 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 55 ms
50,320 KB |
testcase_01 | AC | 55 ms
50,272 KB |
testcase_02 | AC | 56 ms
49,888 KB |
testcase_03 | AC | 55 ms
50,332 KB |
testcase_04 | AC | 55 ms
50,340 KB |
testcase_05 | AC | 56 ms
50,428 KB |
testcase_06 | AC | 56 ms
50,192 KB |
testcase_07 | AC | 56 ms
49,872 KB |
testcase_08 | AC | 56 ms
50,244 KB |
testcase_09 | AC | 56 ms
50,000 KB |
testcase_10 | AC | 55 ms
50,332 KB |
testcase_11 | AC | 55 ms
50,476 KB |
testcase_12 | AC | 56 ms
50,396 KB |
testcase_13 | AC | 55 ms
50,056 KB |
testcase_14 | AC | 56 ms
50,312 KB |
testcase_15 | AC | 55 ms
50,416 KB |
testcase_16 | AC | 55 ms
50,380 KB |
testcase_17 | AC | 107 ms
63,608 KB |
testcase_18 | AC | 111 ms
63,156 KB |
testcase_19 | AC | 101 ms
57,552 KB |
testcase_20 | AC | 104 ms
63,356 KB |
testcase_21 | AC | 97 ms
61,888 KB |
testcase_22 | AC | 113 ms
63,668 KB |
testcase_23 | AC | 113 ms
64,244 KB |
ソースコード
import java.io.*; import java.util.*; public class Main { static char[] values; static int[][] dp; public static void main(String[] args) throws Exception { Scanner sc = new Scanner(); values = sc.next().toCharArray(); int length = values.length; dp = new int[2][length]; if (dfw(0, length - 1) == 2) { System.out.println("Yes"); } else { System.out.println("No"); } } static int dfw(int level, int idx) { if (idx == 0) { return 1; } if (dp[level][idx] == 0) { if (level == 0) { if (values[idx] == '0') { dp[level][idx] = dfw(0, idx - 1); } else { dp[level][idx] = Math.min(dfw(1, idx - 1), dfw(0, idx - 1)) + 1; } } else { if (values[idx] == '1') { dp[level][idx] = dfw(1, idx - 1); } else { dp[level][idx] = Math.min(dfw(1, idx - 1), dfw(0, idx - 1)) + 1; } } } return dp[level][idx]; } } 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 String next() throws Exception { while (!st.hasMoreTokens()) { st = new StringTokenizer(br.readLine()); } return st.nextToken(); } }