結果
問題 | No.706 多眼生物の調査 |
ユーザー | nukacha |
提出日時 | 2018-07-24 19:33:32 |
言語 | C++17(clang) (17.0.6 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 12 ms / 2,000 ms |
コード長 | 494 bytes |
コンパイル時間 | 634 ms |
コンパイル使用メモリ | 119,936 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-11-30 12:38:18 |
合計ジャッジ時間 | 1,178 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,248 KB |
testcase_02 | AC | 2 ms
5,248 KB |
testcase_03 | AC | 2 ms
5,248 KB |
testcase_04 | AC | 3 ms
5,248 KB |
testcase_05 | AC | 6 ms
5,248 KB |
testcase_06 | AC | 12 ms
5,248 KB |
testcase_07 | AC | 2 ms
5,248 KB |
ソースコード
#include <iostream> #include <string> using namespace std; int N; string S[1000]; int lens[1000]; int main() { cin >> N; int max_freq = 0; int result_len = 0; for (int i = 0; i < N; i++) { cin >> S[i]; } for (int i = 0; i < N; i++) { lens[S[i].length() - 2] += 1; } for (int i = 0; i < 1000; i++) { if (max_freq <= lens[i]) { result_len = i; max_freq = lens[i]; } } cout << result_len << endl; }