結果

問題 No.3025  
ユーザー kurenai3110kurenai3110
提出日時 2017-03-31 23:07:47
言語 C++11
(gcc 11.4.0)
結果
TLE  
実行時間 -
コード長 269 bytes
コンパイル時間 528 ms
コンパイル使用メモリ 60,148 KB
実行使用メモリ 13,824 KB
最終ジャッジ日時 2024-04-16 18:48:38
合計ジャッジ時間 5,818 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

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

int main()
{
	string s;

	while (1) {
		string s; cin >> s;

		if (count(s.begin(), s.end(), 'T') != 0)cout << "T" << endl;
		else cout << endl;
	}

    return false;
}

0