結果

問題 No.418 ミンミンゼミ
ユーザー kobaryo222kobaryo222
提出日時 2016-09-10 00:27:01
言語 C90
(gcc 11.4.0)
結果
RE  
実行時間 -
コード長 725 bytes
コンパイル時間 95 ms
コンパイル使用メモリ 20,864 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-04-28 06:12:08
合計ジャッジ時間 4,219 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 RE -
testcase_01 RE -
testcase_02 RE -
testcase_03 RE -
testcase_04 RE -
testcase_05 RE -
testcase_06 RE -
testcase_07 RE -
testcase_08 RE -
testcase_09 RE -
testcase_10 RE -
testcase_11 RE -
testcase_12 RE -
testcase_13 RE -
testcase_14 RE -
testcase_15 RE -
testcase_16 RE -
testcase_17 RE -
testcase_18 RE -
testcase_19 RE -
testcase_20 RE -
testcase_21 RE -
testcase_22 RE -
testcase_23 RE -
testcase_24 RE -
testcase_25 RE -
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.c: In function ‘main’:
main.c:10:23: warning: comparison between pointer and integer
   10 |         if(str_min[i] == "\0"){
      |                       ^~
main.c:13:27: warning: comparison between pointer and integer
   13 |             if(str_min[i] == "m" && str_min[i + 1] == "i"){
      |                           ^~
main.c:13:52: warning: comparison between pointer and integer
   13 |             if(str_min[i] == "m" && str_min[i + 1] == "i"){
      |                                                    ^~
main.c:15:39: warning: comparison between pointer and integer
   15 |                     if(str_min[i + j] == "-"){
      |                                       ^~
main.c:17:45: warning: comparison between pointer and integer
   17 |                     }else if(str_min[i + j] == "n"){
      |                                             ^~
main.c:8:5: warning: ignoring return value of ‘scanf’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
    8 |     scanf("%s", str_min);
      |     ^~~~~~~~~~~~~~~~~~~~

ソースコード

diff #

#include <stdio.h>

int main(){
    char str_min[100];
    int count = 0;
    int i = 0;
    int j = 2;
    scanf("%s", str_min);
    while(1){
        if(str_min[i] == "\0"){
            break;
        }else{
            if(str_min[i] == "m" && str_min[i + 1] == "i"){
                while(1){
                    if(str_min[i + j] == "-"){
                        j++;
                    }else if(str_min[i + j] == "n"){
                        count++;
                        j = 0;
                        break;
                    }else{
                        j = 0;
                        break;
                    }
                }
            }
            i++;
        }
    }
    printf("%d\n", count);
}
0