結果

問題 No.9011 数字を全て足そう(数字だけ)
ユーザー れいんれいん
提出日時 2021-01-09 21:05:29
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 2 ms / 2,000 ms
コード長 258 bytes
コンパイル時間 517 ms
コンパイル使用メモリ 61,824 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-04-29 09:40:07
合計ジャッジ時間 1,373 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 AC 2 ms
5,376 KB
testcase_11 AC 2 ms
5,376 KB
testcase_12 AC 2 ms
5,376 KB
testcase_13 AC 2 ms
5,376 KB
testcase_14 AC 2 ms
5,376 KB
testcase_15 AC 2 ms
5,376 KB
testcase_16 AC 2 ms
5,376 KB
testcase_17 AC 2 ms
5,376 KB
testcase_18 AC 2 ms
5,376 KB
testcase_19 AC 2 ms
5,376 KB
testcase_20 AC 2 ms
5,376 KB
testcase_21 AC 2 ms
5,376 KB
testcase_22 AC 2 ms
5,376 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function 'int main()':
main.cpp:8:22: warning: NULL used in arithmetic [-Wpointer-arith]
    8 |     for(i = 0; s[i]!=NULL; i++){
      |                      ^~~~
main.cpp:10:15: warning: NULL used in arithmetic [-Wpointer-arith]
   10 |         s[i]==NULL;
      |               ^~~~
main.cpp:13:11: warning: 'a' may be used uninitialized [-Wmaybe-uninitialized]
   13 |     printf("%d", a);
      |     ~~~~~~^~~~~~~~~
main.cpp:6:9: note: 'a' was declared here
    6 |     int a, i;
      |         ^

ソースコード

diff #

#include <iostream>
using namespace std;
int main(void){
    // Your code here!
    char s[100];
    int a, i;
    scanf("%s", s);
    for(i = 0; s[i]!=NULL; i++){
        a += s[i] - '0';
        s[i]==NULL;
    }
    
    printf("%d", a);

    return 0;
}
0