結果

問題 No.2450 99-like Number
ユーザー bluemeganebluemegane
提出日時 2023-09-01 22:36:55
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 25 ms / 2,000 ms
コード長 234 bytes
コンパイル時間 1,034 ms
コンパイル使用メモリ 109,540 KB
実行使用メモリ 26,376 KB
最終ジャッジ日時 2024-06-11 04:34:19
合計ジャッジ時間 2,401 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 24 ms
24,076 KB
testcase_01 AC 24 ms
25,996 KB
testcase_02 AC 24 ms
24,208 KB
testcase_03 AC 24 ms
26,124 KB
testcase_04 AC 24 ms
23,948 KB
testcase_05 AC 24 ms
24,200 KB
testcase_06 AC 24 ms
24,328 KB
testcase_07 AC 24 ms
23,824 KB
testcase_08 AC 24 ms
24,208 KB
testcase_09 AC 24 ms
23,948 KB
testcase_10 AC 24 ms
26,372 KB
testcase_11 AC 24 ms
24,076 KB
testcase_12 AC 24 ms
24,464 KB
testcase_13 AC 23 ms
24,208 KB
testcase_14 AC 24 ms
24,336 KB
testcase_15 AC 24 ms
26,376 KB
testcase_16 AC 25 ms
24,208 KB
testcase_17 AC 24 ms
24,196 KB
testcase_18 AC 24 ms
22,064 KB
testcase_19 AC 24 ms
24,208 KB
testcase_20 AC 24 ms
24,216 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc)
Copyright (C) Microsoft Corporation. All rights reserved.

ソースコード

diff #

using System.Linq;
using System;

public class Hello
{
    static void Main()
    {
        var s = Console.ReadLine().Trim();
        var c9 = s.Count(x => x == '9');
        Console.WriteLine(c9 == s.Length ? "Yes" : "No");
    }
}
0