結果

問題 No.2063 ±2^k operations (easy)
ユーザー ks2mks2m
提出日時 2022-09-02 21:52:47
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 397 bytes
コンパイル時間 2,663 ms
コンパイル使用メモリ 75,132 KB
実行使用メモリ 54,700 KB
最終ジャッジ日時 2024-11-16 03:14:11
合計ジャッジ時間 7,064 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 124 ms
54,028 KB
testcase_01 AC 125 ms
53,916 KB
testcase_02 AC 122 ms
54,156 KB
testcase_03 AC 125 ms
54,108 KB
testcase_04 AC 112 ms
52,888 KB
testcase_05 AC 126 ms
53,904 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 125 ms
54,084 KB
testcase_09 AC 123 ms
54,352 KB
testcase_10 AC 124 ms
53,880 KB
testcase_11 AC 126 ms
53,744 KB
testcase_12 AC 125 ms
53,996 KB
testcase_13 WA -
testcase_14 AC 125 ms
54,056 KB
testcase_15 AC 125 ms
53,932 KB
testcase_16 AC 124 ms
53,872 KB
testcase_17 AC 192 ms
54,700 KB
testcase_18 AC 183 ms
54,180 KB
testcase_19 AC 192 ms
54,400 KB
testcase_20 AC 198 ms
54,344 KB
testcase_21 WA -
testcase_22 AC 192 ms
54,328 KB
testcase_23 AC 198 ms
54,356 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
	public static void main(String[] args) throws Exception {
		Scanner sc = new Scanner(System.in);
		char[] n = sc.next().toCharArray();
		sc.close();

		int[] c = new int[2];
		for (int i = 0; i < n.length; i++) {
			c[n[i] - '0']++;
		}

		if (c[0] == 2 || c[1] == 2) {
			System.out.println("Yes");
		} else {
			System.out.println("No");
		}
	}
}
0