結果

問題 No.1591 Two Digits
ユーザー マサマサ
提出日時 2021-12-29 02:23:06
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 307 bytes
コンパイル時間 2,759 ms
コンパイル使用メモリ 79,416 KB
実行使用メモリ 54,684 KB
最終ジャッジ日時 2024-04-14 05:29:03
合計ジャッジ時間 7,280 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 145 ms
53,892 KB
testcase_06 AC 156 ms
54,372 KB
testcase_07 AC 146 ms
53,908 KB
testcase_08 AC 145 ms
54,368 KB
testcase_09 AC 138 ms
54,376 KB
testcase_10 AC 158 ms
54,684 KB
testcase_11 AC 161 ms
54,208 KB
testcase_12 AC 160 ms
54,192 KB
testcase_13 AC 158 ms
54,476 KB
testcase_14 AC 159 ms
54,252 KB
testcase_15 AC 164 ms
53,944 KB
testcase_16 AC 154 ms
54,480 KB
testcase_17 AC 150 ms
54,164 KB
testcase_18 AC 151 ms
54,396 KB
testcase_19 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int n = sc.nextInt();
        
        if(n / 100 == 0) {
            System.out.println("Yes");
        }else {
            System.out.println("No");
        }
    }
}
0