結果

問題 No.289 数字を全て足そう
ユーザー SojiroNishimura
提出日時 2018-03-21 10:51:12
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 24 ms / 1,000 ms
コード長 331 bytes
コンパイル時間 953 ms
コンパイル使用メモリ 103,296 KB
実行使用メモリ 18,048 KB
最終ジャッジ日時 2024-06-24 19:25:43
合計ジャッジ時間 2,525 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 21
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc)
Copyright (C) Microsoft Corporation. All rights reserved.

ソースコード

diff #

using System;
using System.Linq;

class Problem
{
    public static void Main(string[] args)
    {
        var line = Console.ReadLine();
        var ans = 0;
        foreach (var c in line)
        {
            if (c >= '0' && c <= '9') ans += (int) Char.GetNumericValue(c);
        }
        Console.WriteLine($"{ans}");
    }
}
0