結果

問題 No.1591 Two Digits
ユーザー NASU41NASU41
提出日時 2021-05-04 13:28:36
言語 Java21
(openjdk 21)
結果
AC  
実行時間 130 ms / 1,000 ms
コード長 492 bytes
コンパイル時間 2,653 ms
コンパイル使用メモリ 82,964 KB
実行使用メモリ 54,400 KB
最終ジャッジ日時 2024-07-01 14:13:35
合計ジャッジ時間 5,325 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 126 ms
53,848 KB
testcase_01 AC 127 ms
54,400 KB
testcase_02 AC 124 ms
53,740 KB
testcase_03 AC 128 ms
53,752 KB
testcase_04 AC 128 ms
54,164 KB
testcase_05 AC 125 ms
53,692 KB
testcase_06 AC 126 ms
53,768 KB
testcase_07 AC 125 ms
53,744 KB
testcase_08 AC 125 ms
53,548 KB
testcase_09 AC 126 ms
53,580 KB
testcase_10 AC 123 ms
53,976 KB
testcase_11 AC 124 ms
53,884 KB
testcase_12 AC 123 ms
53,980 KB
testcase_13 AC 121 ms
53,924 KB
testcase_14 AC 121 ms
53,660 KB
testcase_15 AC 126 ms
53,624 KB
testcase_16 AC 126 ms
53,892 KB
testcase_17 AC 110 ms
52,536 KB
testcase_18 AC 110 ms
52,544 KB
testcase_19 AC 130 ms
53,972 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) throws Exception{
        Scanner sc = new Scanner(System.in);
        //入力をあえて文字列のまま受け取ります
        String n = sc.next();
        //「2桁」とは「文字列の長さが2」ということなので, これを条件式にします
        if(n.length() == 2){
            System.out.println("Yes");
        }else{
            System.out.println("No");
        }
    }
}
0