結果

問題 No.706 多眼生物の調査
ユーザー Shawn stayCShawn stayC
提出日時 2020-06-16 22:25:03
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 11 ms / 2,000 ms
コード長 332 bytes
コンパイル時間 1,462 ms
コンパイル使用メモリ 167,872 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-07-03 12:00:10
合計ジャッジ時間 2,035 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,944 KB
testcase_02 AC 2 ms
6,944 KB
testcase_03 AC 2 ms
6,940 KB
testcase_04 AC 2 ms
6,940 KB
testcase_05 AC 5 ms
6,940 KB
testcase_06 AC 11 ms
6,944 KB
testcase_07 AC 1 ms
6,940 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function 'int main()':
main.cpp:20:17: warning: 'p' may be used uninitialized [-Wmaybe-uninitialized]
   20 |         cout << p << endl;
      |                 ^
main.cpp:16:13: note: 'p' was declared here
   16 |         int p;
      |             ^

ソースコード

diff #

#include <bits/stdc++.h>
#define _GLIBCXX_DEBUG
#define rep(i,n) for(int i=0; i<(n); i++)
using namespace std;
typedef long long ll;

int main(){
	int n; cin>>n;
	vector<int> v(1001);
	rep(i,n){
		string s; cin>>s;
		int a=s.size()-2;
		v[a]++;
	}
	int e=0;
	int p;
	rep(i,1001){
		if(v[i]>=e){e=v[i]; p=i;}
	}
	cout << p << endl;
}
0