結果
問題 | No.706 多眼生物の調査 |
ユーザー | shioya |
提出日時 | 2018-07-08 18:03:22 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 412 bytes |
コンパイル時間 | 323 ms |
コンパイル使用メモリ | 56,568 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-07-07 19:58:25 |
合計ジャッジ時間 | 781 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | AC | 2 ms
5,376 KB |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
ソースコード
#include<iostream> #include<string> using namespace std; int main() { int sum[1001]; for(int i=0;i<1001;i++){ sum[i] = 0; } int num; cin>>num; string str; for(int i=1;i<=num;i++){ cin>>str; sum[str.length()-2]++; } int max = 0; for(int i=1;i<=num;i++){ if(max <= sum[i]){ max = i; } } cout<<max; return 0; }