結果
問題 | No.706 多眼生物の調査 |
ユーザー | Mister |
提出日時 | 2020-04-09 17:19:21 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 3 ms / 2,000 ms |
コード長 | 510 bytes |
コンパイル時間 | 649 ms |
コンパイル使用メモリ | 76,052 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-09-13 14:09:56 |
合計ジャッジ時間 | 1,299 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | AC | 2 ms
5,376 KB |
testcase_04 | AC | 2 ms
5,376 KB |
testcase_05 | AC | 2 ms
5,376 KB |
testcase_06 | AC | 3 ms
5,376 KB |
testcase_07 | AC | 2 ms
5,376 KB |
ソースコード
#include <iostream> #include <algorithm> #include <vector> #include <string> void solve() { std::vector<int> cnt(1000, 0); int n; std::cin >> n; while (n--) { std::string s; std::cin >> s; ++cnt[s.length() - 2]; } int ans = 0; for (int i = 0; i < 1000; ++i) { if (cnt[i] >= cnt[ans]) ans = i; } std::cout << ans << std::endl; } int main() { std::cin.tie(nullptr); std::ios::sync_with_stdio(false); solve(); return 0; }