結果

問題 No.1591 Two Digits
ユーザー takutakutakutaku
提出日時 2021-08-27 09:00:34
言語 Java21
(openjdk 21)
結果
AC  
実行時間 140 ms / 1,000 ms
コード長 423 bytes
コンパイル時間 2,140 ms
コンパイル使用メモリ 75,436 KB
実行使用メモリ 41,700 KB
最終ジャッジ日時 2024-11-19 11:20:44
合計ジャッジ時間 5,946 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 131 ms
41,288 KB
testcase_01 AC 134 ms
41,340 KB
testcase_02 AC 135 ms
41,156 KB
testcase_03 AC 135 ms
41,296 KB
testcase_04 AC 133 ms
41,448 KB
testcase_05 AC 133 ms
41,096 KB
testcase_06 AC 134 ms
41,144 KB
testcase_07 AC 134 ms
41,396 KB
testcase_08 AC 132 ms
41,148 KB
testcase_09 AC 131 ms
41,332 KB
testcase_10 AC 140 ms
41,700 KB
testcase_11 AC 134 ms
41,252 KB
testcase_12 AC 138 ms
41,684 KB
testcase_13 AC 131 ms
41,140 KB
testcase_14 AC 134 ms
41,400 KB
testcase_15 AC 138 ms
41,152 KB
testcase_16 AC 140 ms
41,104 KB
testcase_17 AC 134 ms
41,292 KB
testcase_18 AC 134 ms
41,292 KB
testcase_19 AC 138 ms
41,380 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) throws Exception {
        
        Scanner sc = new Scanner(System.in);
        String num = sc.next();
        sc.close();
        
        int len = String.valueOf(num).length();
        
        if(len == 2) {
            System.out.println("Yes");
        } else {
            System.out.println("No");    
        }
        
    }
}
0