結果
問題 | No.239 にゃんぱすー |
ユーザー |
![]() |
提出日時 | 2019-08-20 09:51:32 |
言語 | C (gcc 13.3.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 937 bytes |
コンパイル時間 | 242 ms |
コンパイル使用メモリ | 29,824 KB |
実行使用メモリ | 6,820 KB |
最終ジャッジ日時 | 2024-10-06 11:42:32 |
合計ジャッジ時間 | 1,183 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 4 |
other | AC * 31 WA * 2 |
ソースコード
#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++){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(villger[i]==numofvillger-1&&identify==false){maxgreettimes=villger[i];ren=i+1;identify=true;}else if(maxgreettimes==villger[i]&&identify==true){identify=false;}}if(identify==false){printf("-1");}else{printf("%d",ren);}}