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