結果

問題 No.1070 Missing a space
ユーザー Maeda
提出日時 2025-03-11 13:52:08
言語 C
(gcc 13.3.0)
結果
WA  
実行時間 -
コード長 217 bytes
コンパイル時間 337 ms
コンパイル使用メモリ 26,240 KB
実行使用メモリ 11,392 KB
最終ジャッジ日時 2025-03-11 13:52:10
合計ジャッジ時間 1,435 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 1 WA * 2
other AC * 2 WA * 5
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.c: In function ‘main’:
main.c:6:17: warning: format ‘%s’ expects argument of type ‘char *’, but argument 2 has type ‘char (*)[10000000]’ [-Wformat=]
    6 |         scanf("%s",&c);
      |                ~^  ~~
      |                 |  |
      |                 |  char (*)[10000000]
      |                 char *
main.c:6:9: warning: ignoring return value of ‘scanf’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
    6 |         scanf("%s",&c);
      |         ^~~~~~~~~~~~~~

ソースコード

diff #

#include <stdio.h>
#include <string.h>

void main(void){
	char c[10000000] = "a";
	scanf("%s",&c);
	int count = 0;
	for(int i = 1;i < (int)strlen(c)-1;i++){
		if(c[i] != '0'){
			count++;
		}
	}
	printf("%d",count);
}
0