結果

問題 No.2450 99-like Number
ユーザー kusagame12kusagame12
提出日時 2023-11-25 16:14:53
言語 Java21
(openjdk 21)
結果
AC  
実行時間 52 ms / 2,000 ms
コード長 493 bytes
コンパイル時間 2,629 ms
コンパイル使用メモリ 73,852 KB
実行使用メモリ 50,348 KB
最終ジャッジ日時 2024-09-26 10:55:30
合計ジャッジ時間 4,428 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 50 ms
50,212 KB
testcase_01 AC 50 ms
50,032 KB
testcase_02 AC 50 ms
49,904 KB
testcase_03 AC 52 ms
50,216 KB
testcase_04 AC 51 ms
50,236 KB
testcase_05 AC 49 ms
50,248 KB
testcase_06 AC 50 ms
50,044 KB
testcase_07 AC 49 ms
49,976 KB
testcase_08 AC 50 ms
50,088 KB
testcase_09 AC 51 ms
49,928 KB
testcase_10 AC 51 ms
50,040 KB
testcase_11 AC 51 ms
50,260 KB
testcase_12 AC 51 ms
50,232 KB
testcase_13 AC 50 ms
50,116 KB
testcase_14 AC 50 ms
50,208 KB
testcase_15 AC 50 ms
50,276 KB
testcase_16 AC 52 ms
49,900 KB
testcase_17 AC 51 ms
50,348 KB
testcase_18 AC 51 ms
50,204 KB
testcase_19 AC 49 ms
50,148 KB
testcase_20 AC 48 ms
50,196 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.io.*;

public class Main {
    public static void main(String[] args) throws Exception {

        BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
        String n = br.readLine();
        
        for(int i = 0 ; i < n.length() ; i++){
            char c = n.charAt(i);
            if(c != '9'){
                System.out.print("No");
                return;
            }
        }
        
        System.out.print("Yes");

    }

}
0