結果
| 問題 |
No.8025
|
| コンテスト | |
| ユーザー |
kurenai3110
|
| 提出日時 | 2017-03-31 23:07:47 |
| 言語 | C++11(廃止可能性あり) (gcc 13.3.0) |
| 結果 |
TLE
|
| 実行時間 | - |
| コード長 | 269 bytes |
| コンパイル時間 | 433 ms |
| コンパイル使用メモリ | 60,364 KB |
| 実行使用メモリ | 16,712 KB |
| 最終ジャッジ日時 | 2024-10-07 18:58:54 |
| 合計ジャッジ時間 | 5,773 ms |
|
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | TLE * 1 |
ソースコード
#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;
}
kurenai3110