結果
問題 | No.279 木の数え上げ |
ユーザー |
![]() |
提出日時 | 2020-11-02 22:12:41 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 26 ms / 2,000 ms |
コード長 | 411 bytes |
コンパイル時間 | 1,657 ms |
コンパイル使用メモリ | 168,232 KB |
実行使用メモリ | 5,424 KB |
最終ジャッジ日時 | 2024-07-22 08:09:13 |
合計ジャッジ時間 | 3,104 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 21 |
ソースコード
#include <bits/stdc++.h> using namespace std; int main() { string s; cin >> s; int t = 0; int r = 0; int e = 0; for (int i = 0; i < s.size(); i++) { if (s.at(i) == 't') { t++; } if (s.at(i) == 'r') { r++; } if (s.at(i) == 'e') { e++; } } cout << min(t, min(r, e / 2)) << endl; return 0; }