結果

問題 No.1070 Missing a space
ユーザー Maeda
提出日時 2025-03-11 13:52:55
言語 C
(gcc 13.3.0)
結果
WA  
実行時間 -
コード長 216 bytes
コンパイル時間 376 ms
コンパイル使用メモリ 25,600 KB
実行使用メモリ 11,392 KB
最終ジャッジ日時 2025-03-11 13:52:57
合計ジャッジ時間 1,408 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 1 WA * 2
other AC * 2 WA * 5
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.c: In function ‘main’:
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