結果
| 問題 | No.279 木の数え上げ |
| コンテスト | |
| ユーザー |
saio4016
|
| 提出日時 | 2019-02-21 19:54:03 |
| 言語 | C++11(廃止可能性あり) (gcc 13.3.0 + boost 1.89.0) |
| 結果 |
AC
|
| 実行時間 | 24 ms / 2,000 ms |
| コード長 | 472 bytes |
| 記録 | |
| コンパイル時間 | 1,242 ms |
| コンパイル使用メモリ | 159,136 KB |
| 実行使用メモリ | 5,296 KB |
| 最終ジャッジ日時 | 2024-11-20 19:36:59 |
| 合計ジャッジ時間 | 2,690 ms |
|
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 21 |
ソースコード
#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
typedef pair<int,int> P;
const int INF = 1e9;
const int mod = 1e9+7;
const double EPS = 1e-10;
const double PI = acos(-1.0);
int main()
{
string s;
cin >> s;
int t = 0,r = 0,e = 0;
for(int i = 0; i < s.size(); i++){
if(s[i] == 't') t++;
if(s[i] == 'r') r++;
if(s[i] == 'e') e++;
}
cout << min({t,r,e/2}) << endl;
return 0;
}
saio4016