結果

問題 No.1591 Two Digits
ユーザー みーすけみーすけ
提出日時 2021-10-03 18:20:29
言語 Java21
(openjdk 21)
結果
AC  
実行時間 147 ms / 1,000 ms
コード長 219 bytes
コンパイル時間 2,338 ms
コンパイル使用メモリ 74,324 KB
実行使用メモリ 41,436 KB
最終ジャッジ日時 2024-07-21 13:20:12
合計ジャッジ時間 6,268 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 125 ms
41,384 KB
testcase_01 AC 129 ms
41,092 KB
testcase_02 AC 128 ms
41,436 KB
testcase_03 AC 124 ms
41,048 KB
testcase_04 AC 123 ms
40,956 KB
testcase_05 AC 139 ms
41,116 KB
testcase_06 AC 129 ms
41,332 KB
testcase_07 AC 129 ms
41,148 KB
testcase_08 AC 125 ms
40,884 KB
testcase_09 AC 122 ms
41,052 KB
testcase_10 AC 121 ms
40,920 KB
testcase_11 AC 127 ms
40,908 KB
testcase_12 AC 131 ms
41,288 KB
testcase_13 AC 128 ms
41,052 KB
testcase_14 AC 124 ms
41,204 KB
testcase_15 AC 123 ms
40,892 KB
testcase_16 AC 127 ms
40,868 KB
testcase_17 AC 147 ms
41,284 KB
testcase_18 AC 127 ms
41,212 KB
testcase_19 AC 125 ms
41,052 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        String s = sc.next();
        System.out.println(s.length()==2 ? "Yes" : "No");
    }
}
0