結果
問題 | No.706 多眼生物の調査 |
ユーザー | 1white_princess |
提出日時 | 2022-02-25 16:18:47 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 849 bytes |
コンパイル時間 | 1,449 ms |
コンパイル使用メモリ | 171,128 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-07-03 10:54:11 |
合計ジャッジ時間 | 2,039 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | AC | 2 ms
5,376 KB |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
ソースコード
#include <bits/stdc++.h> #include <iostream> using namespace std; #pragma GCC optimize("Ofast") #pragma GCC target("sse,sse2,sse3,ssse3,sse4,popcnt,abm,mmx,avx,tune=native") #define rep(i,a,b) for(LL i = a;i<b; i++) #define rrep(i,a,b) for(LL i = a;i>b; i--) #define tobirep(i,a,b,c) for(LL i = a;i<b; i+=c) #define tobirrep(i,a,b,c) for(LL i = a;i>b; i-=c) #define INF ((1LL<<62)-(1LL<<31)) #define ooki 9223372036854775807 #define tii -9223372036854775808 typedef long long LL; int main(){ ios::sync_with_stdio(0);cin.tie(nullptr); LL n; cin >> n; vector<int> p(2000); rep(i,0,2000){p[i]=0;} rep(i,0,n){ string s; cin >> s; p[s.size()-2]++; } LL ans = 0; rep(i,1,2000){ if(p[i]>=ans){ ans = i; } } cout << ans << endl; }