結果
| 問題 |
No.8025
|
| コンテスト | |
| ユーザー |
pazzle1230
|
| 提出日時 | 2017-03-31 23:26:23 |
| 言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 131 bytes |
| コンパイル時間 | 528 ms |
| コンパイル使用メモリ | 63,104 KB |
| 実行使用メモリ | 5,248 KB |
| 最終ジャッジ日時 | 2024-10-07 19:00:52 |
| 合計ジャッジ時間 | 814 ms |
|
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | WA * 1 |
ソースコード
#include <iostream>
#include <string>
using namespace std;
int main(void){
string s;
while(cin >> s && s.find('T')){
cin >> s;
}
}
pazzle1230