結果
問題 | No.706 多眼生物の調査 |
ユーザー | shioya |
提出日時 | 2018-07-08 18:07:52 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 468 bytes |
コンパイル時間 | 345 ms |
コンパイル使用メモリ | 55,284 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-07-07 20:31:47 |
合計ジャッジ時間 | 787 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,812 KB |
testcase_01 | WA | - |
testcase_02 | AC | 1 ms
6,940 KB |
testcase_03 | AC | 1 ms
6,944 KB |
testcase_04 | AC | 2 ms
6,940 KB |
testcase_05 | AC | 4 ms
6,940 KB |
testcase_06 | AC | 9 ms
6,940 KB |
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; int max_num = 0; for(int i=1;i<=num;i++){ if(max <= sum[i]){ max = sum[i]; max_num = i; } } cout<<max_num; return 0; }