結果

問題 No.2322 MMA文字列
ユーザー gemmarogemmaro
提出日時 2023-07-05 08:32:12
言語 Java21
(openjdk 21)
結果
AC  
実行時間 119 ms / 2,000 ms
コード長 392 bytes
コンパイル時間 2,427 ms
コンパイル使用メモリ 74,508 KB
実行使用メモリ 41,524 KB
最終ジャッジ日時 2024-07-19 02:51:49
合計ジャッジ時間 6,115 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 117 ms
41,320 KB
testcase_01 AC 98 ms
39,756 KB
testcase_02 AC 117 ms
41,252 KB
testcase_03 AC 105 ms
40,712 KB
testcase_04 AC 96 ms
39,748 KB
testcase_05 AC 119 ms
41,372 KB
testcase_06 AC 111 ms
41,452 KB
testcase_07 AC 114 ms
41,340 KB
testcase_08 AC 97 ms
39,980 KB
testcase_09 AC 110 ms
41,348 KB
testcase_10 AC 98 ms
40,300 KB
testcase_11 AC 103 ms
40,164 KB
testcase_12 AC 103 ms
40,300 KB
testcase_13 AC 117 ms
41,524 KB
testcase_14 AC 102 ms
40,044 KB
testcase_15 AC 104 ms
40,368 KB
testcase_16 AC 108 ms
40,192 KB
testcase_17 AC 109 ms
41,216 KB
testcase_18 AC 112 ms
41,224 KB
testcase_19 AC 105 ms
40,800 KB
testcase_20 AC 116 ms
41,412 KB
testcase_21 AC 102 ms
40,064 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
    public static void main(String args[]) {
        Scanner scanner = new Scanner(System.in);
        char[] chars = scanner.next().toCharArray();
        scanner.close();
        if (chars[0] == chars[1] && chars[1] != chars[2]) {
            System.out.println("Yes");
        } else {
            System.out.println("No");
        }
    }
}
0