結果
問題 | No.239 にゃんぱすー |
ユーザー |
![]() |
提出日時 | 2019-08-20 09:47:27 |
言語 | C (gcc 13.3.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 902 bytes |
コンパイル時間 | 194 ms |
コンパイル使用メモリ | 29,952 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-10-06 11:42:13 |
合計ジャッジ時間 | 1,363 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
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(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);}}