結果

問題 No.706 多眼生物の調査
ユーザー Mcpu3Mcpu3
提出日時 2018-06-29 22:31:17
言語 C
(gcc 13.3.0)
結果
AC  
実行時間 3 ms / 2,000 ms
コード長 331 bytes
コンパイル時間 258 ms
コンパイル使用メモリ 29,184 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-06-30 23:57:47
合計ジャッジ時間 726 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 5
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <stdio.h>
#include <string.h>

int main(void)
{
	char s[1001];
	int n, i, t = 0, a[998] = { 0 };
	scanf("%d", &n);
	for (i = 0; i < n; i++) {
		scanf("%s", s);
		a[strlen(s) - 2]++;
	}
	n = 0;
	for (i = 0; i < 998; i++) {
		if (a[i] >= t) {
			n = i;
			t = a[i];
		}
	}
	printf("%d", n);
	return 0;
}
0