結果

問題 No.1591 Two Digits
ユーザー マサマサ
提出日時 2021-12-29 02:23:06
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 307 bytes
コンパイル時間 2,850 ms
コンパイル使用メモリ 74,236 KB
実行使用メモリ 41,460 KB
最終ジャッジ日時 2024-10-03 02:41:25
合計ジャッジ時間 6,166 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 124 ms
41,216 KB
testcase_06 AC 109 ms
40,296 KB
testcase_07 AC 120 ms
41,252 KB
testcase_08 AC 122 ms
41,232 KB
testcase_09 AC 120 ms
41,212 KB
testcase_10 AC 118 ms
41,156 KB
testcase_11 AC 116 ms
41,132 KB
testcase_12 AC 123 ms
41,168 KB
testcase_13 AC 122 ms
41,168 KB
testcase_14 AC 129 ms
41,452 KB
testcase_15 AC 121 ms
41,336 KB
testcase_16 AC 117 ms
41,136 KB
testcase_17 AC 123 ms
41,008 KB
testcase_18 AC 121 ms
41,184 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