結果

問題 No.2450 99-like Number
ユーザー viral8viral8
提出日時 2023-09-01 21:26:16
言語 Java21
(openjdk 21)
結果
AC  
実行時間 127 ms / 2,000 ms
コード長 219 bytes
コンパイル時間 3,191 ms
コンパイル使用メモリ 74,368 KB
実行使用メモリ 41,388 KB
最終ジャッジ日時 2024-06-11 02:57:34
合計ジャッジ時間 5,416 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 118 ms
41,160 KB
testcase_01 AC 117 ms
41,144 KB
testcase_02 AC 118 ms
41,044 KB
testcase_03 AC 118 ms
41,040 KB
testcase_04 AC 111 ms
39,864 KB
testcase_05 AC 114 ms
41,084 KB
testcase_06 AC 109 ms
39,852 KB
testcase_07 AC 123 ms
41,132 KB
testcase_08 AC 127 ms
41,092 KB
testcase_09 AC 121 ms
41,172 KB
testcase_10 AC 114 ms
41,108 KB
testcase_11 AC 116 ms
41,280 KB
testcase_12 AC 120 ms
41,056 KB
testcase_13 AC 123 ms
40,972 KB
testcase_14 AC 116 ms
40,876 KB
testcase_15 AC 121 ms
41,388 KB
testcase_16 AC 112 ms
41,044 KB
testcase_17 AC 114 ms
41,236 KB
testcase_18 AC 99 ms
39,864 KB
testcase_19 AC 99 ms
41,184 KB
testcase_20 AC 97 ms
41,104 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
class Main{
	public static void main(String[] args){
		Scanner sc = new Scanner(System.in);
		String N = sc.next();
		N = N.replace("9","");
		System.out.println(N.length()==0?"Yes":"No");
	}
}
0