結果
問題 | No.289 数字を全て足そう |
ユーザー | mafuyu-aki |
提出日時 | 2017-03-29 23:52:33 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 838 bytes |
コンパイル時間 | 332 ms |
コンパイル使用メモリ | 24,576 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-07-06 15:11:50 |
合計ジャッジ時間 | 1,026 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 0 ms
6,816 KB |
testcase_01 | AC | 0 ms
6,940 KB |
testcase_02 | AC | 0 ms
6,944 KB |
testcase_03 | AC | 0 ms
6,940 KB |
testcase_04 | AC | 0 ms
6,940 KB |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | AC | 0 ms
6,940 KB |
testcase_22 | WA | - |
testcase_23 | WA | - |
ソースコード
#include <stdio.h> #include <stdlib.h> #include <string.h> #define READ_BUFSIZE ( 101 ) #define READ_DELIMITER ( " " ) //標準入力取得(1行) int GetStdin( char* pszStr, int lMaxLen ) { int lLen = 0; memset( pszStr, 0, lMaxLen ); if( fgets( pszStr, lMaxLen, stdin ) ) { lLen = strlen( pszStr ); if( lLen >= 1 ) { if( pszStr[ lLen - 1 ] == 0x0A ) { pszStr[ lLen - 1 ] = 0; lLen--; } } } return( lLen ); } int main(int argc, char *argv[]) { char szRead[READ_BUFSIZE] = ""; //char* psOutbuf[2] = { 0 }; GetStdin( szRead, READ_BUFSIZE ); int lSummary = 0; for( int i = 0; szRead[i] != 0; i++ ) { //数字の範囲 0x30 ー 0x39 if( szRead[i] >= '0' && szRead[i] <= '9' ) lSummary += (int)( szRead[i]-'0' ); } printf( "%d\n", lSummary ); return 0; }