結果

問題 No.289 数字を全て足そう
ユーザー k-a-rgbk-a-rgb
提出日時 2023-09-20 11:46:18
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 25 ms / 1,000 ms
コード長 803 bytes
コンパイル時間 3,151 ms
コンパイル使用メモリ 111,016 KB
実行使用メモリ 25,676 KB
最終ジャッジ日時 2024-07-06 07:08:43
合計ジャッジ時間 4,180 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 20 ms
23,520 KB
testcase_01 AC 23 ms
23,392 KB
testcase_02 AC 22 ms
23,516 KB
testcase_03 AC 22 ms
25,676 KB
testcase_04 AC 20 ms
23,516 KB
testcase_05 AC 21 ms
23,800 KB
testcase_06 AC 23 ms
21,680 KB
testcase_07 AC 23 ms
23,632 KB
testcase_08 AC 23 ms
25,564 KB
testcase_09 AC 22 ms
23,776 KB
testcase_10 AC 25 ms
25,516 KB
testcase_11 AC 21 ms
23,500 KB
testcase_12 AC 22 ms
23,856 KB
testcase_13 AC 20 ms
23,520 KB
testcase_14 AC 20 ms
21,428 KB
testcase_15 AC 21 ms
23,988 KB
testcase_16 AC 20 ms
21,560 KB
testcase_17 AC 21 ms
23,520 KB
testcase_18 AC 21 ms
23,516 KB
testcase_19 AC 21 ms
23,396 KB
testcase_20 AC 21 ms
23,776 KB
testcase_21 AC 20 ms
23,520 KB
testcase_22 AC 21 ms
25,560 KB
testcase_23 AC 19 ms
21,424 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
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.Collections.Generic;
using System.Linq;

namespace PracticeAtCoder
{
    class Program
    {
        static void Main(string[] args)
        {
			
			
			//足し算
			string sC = Console.ReadLine();
			string sCA = "";
			int number;
			int sumA = 0;
			//文字長さまで繰り返し処理
			//sC[i]だとchar型と扱われ、型の違いでError Foreach を用いて対策など
			for(int i = 0; i<sC.Length;i++){
				sCA =sC[i]+"";
				bool success = int.TryParse(sCA , out number);
				
				if(success){
					 //Console.WriteLine($"Converted'{sCA}'to {number},");
					 sumA = sumA +number;
				}else{
					sCA =sC[i]+"";
					//Console.WriteLine($"Attempted conversion of '{sCA ?? "<null>"}' failed.");
				}
			}
			Console.WriteLine(sumA);
				
			
		}
    }
}
0