結果

問題 No.289 数字を全て足そう
ユーザー yycoder
提出日時 2019-12-06 17:18:21
言語 C
(gcc 13.3.0)
結果
RE  
実行時間 -
コード長 228 bytes
コンパイル時間 2,039 ms
コンパイル使用メモリ 27,904 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-12-23 11:41:22
合計ジャッジ時間 3,308 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 3 RE * 18
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <stdio.h>

int main(void)
{
	char str[100];
	int i;
	int count = 0;
	scanf("%s", str);
	


	for (i = 0; str[i] != '\0'; i++) {
		if (str[i] <= '9') 
			count += (str[i] - 48);
	}

	printf("%d\n", count);

	return 0;
}

0