結果
| 問題 |
No.304 鍵(1)
|
| コンテスト | |
| ユーザー |
Lay_ec
|
| 提出日時 | 2015-11-27 23:07:49 |
| 言語 | C++11(廃止可能性あり) (gcc 13.3.0) |
| 結果 |
TLE
(最新)
AC
(最初)
|
| 実行時間 | - |
| コード長 | 571 bytes |
| コンパイル時間 | 695 ms |
| コンパイル使用メモリ | 82,576 KB |
| 実行使用メモリ | 39,884 KB |
| 最終ジャッジ日時 | 2024-07-16 21:54:32 |
| 合計ジャッジ時間 | 6,925 ms |
|
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | TLE * 1 -- * 5 |
ソースコード
#include <iostream>
#include <string>
#include <vector>
#include <cmath>
#include <algorithm>
#include <cstdlib>
#include <ctime>
#include <cstdio>
#include <functional>
#include <set>
#include <sstream>
#include <map>
#include <queue>
#include <stack>
using namespace std;
int main(){
for(int i=0;i<1000;i++){
stringstream ss;
ss<<i;
string out=ss.str();
while(out.size()!=3) out='0'+out;
cout<<out;
cout.flush();
string res;
cin>>res;
if(res[0]=='u') break;
}
return 0;
}
Lay_ec