結果

問題 No.8025  
ユーザー ldsyb
提出日時 2017-04-01 00:31:01
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
WA  
実行時間 -
コード長 169 bytes
コンパイル時間 603 ms
コンパイル使用メモリ 66,816 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-10-07 19:13:46
合計ジャッジ時間 929 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other WA * 1
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <algorithm>
using namespace std;

int main(){
    string s;
    cin >> s;
    cout << (count(s.begin(), s.end(), 'T') ? "T" : "") << endl;
}
0