結果

問題 No.9011 数字を全て足そう(数字だけ)
ユーザー れいん
提出日時 2021-01-09 20:59:52
言語 C++14
(gcc 13.3.0 + boost 1.89.0)
結果
WA  
(最新)
AC  
(最初)
実行時間 -
コード長 330 bytes
記録
記録タグの例:
初AC ショートコード 純ショートコード 純主流ショートコード 最速実行時間
コンパイル時間 738 ms
コンパイル使用メモリ 60,924 KB
実行使用メモリ 7,720 KB
最終ジャッジ日時 2025-11-08 03:55:44
合計ジャッジ時間 1,444 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other WA * 23
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function ‘int main()’:
main.cpp:8:22: warning: NULL used in arithmetic [-Wpointer-arith]
    8 |     for(i = 0; s[i]!=NULL; s[i]==NULL){
      |                      ^~~~
main.cpp:8:34: warning: NULL used in arithmetic [-Wpointer-arith]
    8 |     for(i = 0; s[i]!=NULL; s[i]==NULL){
      |                                  ^~~~
main.cpp:7:10: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
    7 |     scanf("%s", s);
      |     ~~~~~^~~~~~~~~
main.cpp:9:11: warning: ‘a’ may be used uninitialized [-Wmaybe-uninitialized]
    9 |         a += s[i] - '0';
      |         ~~^~~~~~~~~~~~~
main.cpp:6:9: note: ‘a’ was declared here
    6 |     int a, i;
      |         ^

ソースコード

diff #
raw source code

#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; s[i]==NULL){
        a += s[i] - '0';
        i++;
    }
    
    printf("%d", a);
    //while(s[]){
    //printf("%d\n", a - 'i');
    //i++;
    
    //}

    return 0;
}
0