結果

問題 No.509 塗りつぶしツール
ユーザー bluemeganebluemegane
提出日時 2018-09-13 15:16:44
言語 C#(csc)
(csc 3.9.0)
結果
WA  
実行時間 -
コード長 355 bytes
コンパイル時間 2,005 ms
コンパイル使用メモリ 108,892 KB
実行使用メモリ 25,936 KB
最終ジャッジ日時 2024-07-01 04:25:41
合計ジャッジ時間 3,394 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 23 ms
23,516 KB
testcase_01 AC 24 ms
25,432 KB
testcase_02 AC 24 ms
23,732 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 AC 24 ms
23,648 KB
testcase_07 WA -
testcase_08 AC 23 ms
23,504 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 23 ms
25,544 KB
testcase_15 WA -
testcase_16 AC 24 ms
25,552 KB
testcase_17 WA -
testcase_18 AC 24 ms
23,252 KB
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 23 ms
23,504 KB
testcase_23 AC 24 ms
25,688 KB
testcase_24 AC 24 ms
25,676 KB
testcase_25 WA -
testcase_26 WA -
testcase_27 AC 24 ms
25,280 KB
testcase_28 AC 24 ms
23,264 KB
testcase_29 AC 23 ms
23,516 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc)
Copyright (C) Microsoft Corporation. All rights reserved.

ソースコード

diff #

using System;

public class Hello
{
    public static void Main()
    {
        var s = Console.ReadLine().Trim();
        var sL = s.Length;
        var ans = 0;
        foreach (var x in s)
            if (x == '0' | x == '4' | x == '6' | x == '9') ans += 1;
            else if (x == '8') ans += 2;
        Console.WriteLine(ans + 1 + 2 * sL);
    }
}
0