結果

問題 No.1591 Two Digits
ユーザー Subaru314Subaru314
提出日時 2022-01-10 21:17:09
言語 Java21
(openjdk 21)
結果
AC  
実行時間 118 ms / 1,000 ms
コード長 341 bytes
コンパイル時間 2,101 ms
コンパイル使用メモリ 74,096 KB
実行使用メモリ 41,548 KB
最終ジャッジ日時 2024-04-26 20:17:12
合計ジャッジ時間 5,079 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 104 ms
39,896 KB
testcase_01 AC 107 ms
41,008 KB
testcase_02 AC 107 ms
40,856 KB
testcase_03 AC 114 ms
41,364 KB
testcase_04 AC 115 ms
41,200 KB
testcase_05 AC 112 ms
41,112 KB
testcase_06 AC 115 ms
41,332 KB
testcase_07 AC 111 ms
41,548 KB
testcase_08 AC 118 ms
40,928 KB
testcase_09 AC 113 ms
40,984 KB
testcase_10 AC 115 ms
41,020 KB
testcase_11 AC 104 ms
39,964 KB
testcase_12 AC 109 ms
40,716 KB
testcase_13 AC 102 ms
39,936 KB
testcase_14 AC 111 ms
40,784 KB
testcase_15 AC 111 ms
41,020 KB
testcase_16 AC 104 ms
40,164 KB
testcase_17 AC 112 ms
40,936 KB
testcase_18 AC 112 ms
41,208 KB
testcase_19 AC 107 ms
39,968 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

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