結果
問題 | No.279 木の数え上げ |
ユーザー |
|
提出日時 | 2023-01-07 11:55:00 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 25 ms / 2,000 ms |
コード長 | 319 bytes |
コンパイル時間 | 1,856 ms |
コンパイル使用メモリ | 167,820 KB |
実行使用メモリ | 6,820 KB |
最終ジャッジ日時 | 2024-12-14 11:22:53 |
合計ジャッジ時間 | 3,710 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 21 |
ソースコード
#include <bits/stdc++.h>using namespace std;int main(){string S; cin>>S;int ct=0,cr=0,ce=0;for(int i=0;i<S.size();i++){if(S[i]=='t'){ct++;}else if(S[i]=='r'){cr++;}else if(S[i]=='e'){ce++;}}cout<<min(min(ct,cr),ce/2)<<endl;}