結果
| 問題 |
No.1070 Missing a space
|
| コンテスト | |
| ユーザー |
Maeda
|
| 提出日時 | 2025-03-11 13:57:04 |
| 言語 | C (gcc 13.3.0) |
| 結果 |
AC
|
| 実行時間 | 2 ms / 1,000 ms |
| コード長 | 225 bytes |
| コンパイル時間 | 271 ms |
| コンパイル使用メモリ | 25,728 KB |
| 実行使用メモリ | 7,324 KB |
| 最終ジャッジ日時 | 2025-03-11 13:57:06 |
| 合計ジャッジ時間 | 1,188 ms |
|
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 7 |
コンパイルメッセージ
main.c: In function ‘main’:
main.c:6:5: warning: ignoring return value of ‘scanf’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
6 | scanf("%s",c);
| ^~~~~~~~~~~~~
ソースコード
#include <stdio.h>
#include <string.h>
void main(void){
char c[1000000] = "a";
scanf("%s",c);
int count = 0;
for(int i = 1;i < (int)strlen(c);i++){
if(c[i] != '0'){
count++;
}
}
printf("%d",count);
}
Maeda