結果

問題 No.2322 MMA文字列
ユーザー sysnote8mainsysnote8main
提出日時 2024-02-03 22:39:50
言語 Java21
(openjdk 21)
結果
AC  
実行時間 122 ms / 2,000 ms
コード長 328 bytes
コンパイル時間 2,270 ms
コンパイル使用メモリ 75,008 KB
実行使用メモリ 41,320 KB
最終ジャッジ日時 2024-09-28 11:04:09
合計ジャッジ時間 5,557 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 102 ms
39,664 KB
testcase_01 AC 116 ms
40,944 KB
testcase_02 AC 114 ms
40,904 KB
testcase_03 AC 118 ms
41,244 KB
testcase_04 AC 103 ms
39,752 KB
testcase_05 AC 101 ms
39,800 KB
testcase_06 AC 116 ms
41,044 KB
testcase_07 AC 115 ms
40,824 KB
testcase_08 AC 107 ms
40,236 KB
testcase_09 AC 113 ms
41,136 KB
testcase_10 AC 118 ms
40,908 KB
testcase_11 AC 105 ms
39,916 KB
testcase_12 AC 110 ms
40,724 KB
testcase_13 AC 122 ms
41,112 KB
testcase_14 AC 114 ms
41,036 KB
testcase_15 AC 116 ms
41,320 KB
testcase_16 AC 103 ms
39,868 KB
testcase_17 AC 111 ms
40,956 KB
testcase_18 AC 119 ms
41,196 KB
testcase_19 AC 106 ms
39,936 KB
testcase_20 AC 116 ms
41,112 KB
testcase_21 AC 117 ms
40,688 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
  public static void log(Object obj) {
    System.out.println(obj.toString());
  }

  public static void main(String[] args) {
    Scanner sc = new Scanner(System.in);
    String s = sc.next();
    char[] c = s.toCharArray();
    log(c[0] == c[1] && c[1] != c[2]?"Yes":"No");
  }
}
0