結果

問題 No.239 にゃんぱすー
ユーザー funakoshi
提出日時 2019-08-20 09:40:49
言語 C
(gcc 13.3.0)
結果
WA  
実行時間 -
コード長 977 bytes
コンパイル時間 242 ms
コンパイル使用メモリ 29,824 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-10-06 11:41:35
合計ジャッジ時間 1,288 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 1 WA * 3
other AC * 11 WA * 22
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <stdbool.h>
int main(void)
{
    char greeting[100]="";
    int villger[110]={0};
    int numofvillger;
    scanf("%d",&numofvillger);
    for(int i=0;i<numofvillger;i++)
    {
        for(int j=0;j<numofvillger;j++)
        {
            if(i==j)
            {
                continue;
            }
            scanf("%s",greeting);
            if(strcmp(greeting,"nyanpass")==0)
            {
                villger[j]++;
            }
        }
    }
    int maxgreettimes=0,ren=-1;
    bool identify = false;
    for(int i=0;i<numofvillger;i++)
    {
        if(maxgreettimes<villger[i])
        {
            maxgreettimes=villger[i];
            ren=i+1;
            identify=true;
        }
        else if(maxgreettimes==villger[i])
        {
            identify=false;
        }
    }
    if(identify==false)
    {
        printf("-1");
    }
    else
    {
        printf("%d",ren);
    }
    
}
0