結果

問題 No.304 鍵(1)
ユーザー takubokudoritakubokudori
提出日時 2017-09-01 00:18:23
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 62 ms / 2,000 ms
コード長 849 bytes
コンパイル時間 1,261 ms
コンパイル使用メモリ 86,824 KB
実行使用メモリ 24,336 KB
平均クエリ数 309.17
最終ジャッジ日時 2023-09-24 01:31:31
合計ジャッジ時間 1,772 ms
ジャッジサーバーID
(参考情報)
judge15 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
23,388 KB
testcase_01 AC 29 ms
23,508 KB
testcase_02 AC 62 ms
23,832 KB
testcase_03 AC 28 ms
24,180 KB
testcase_04 AC 45 ms
24,336 KB
testcase_05 AC 28 ms
23,784 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <algorithm>
#include <cmath>
#include <cstdio>
#include <cstdlib>
#include <functional>
#include <iostream>
#include <iterator>
#include <list>
#include <map>
#include <queue>
#include <set>
#include <sstream>
#include <stack>
#include <string>
#include <utility>
#include <valarray>
#include <vector>

#define N 1000
#define MOD 1000000007
#define pe(str) return cout<<(str)<<endl,0
#define px(str) {cout<<str<<endl;exit(0);}
#define re(i,n) for(int i=0;i<(n);i++)
#define rep(i,a,b) for(int i=(a);i<(b);i++)
#define fe(i,n,f) for_each(i,n,f)
#define bw(a,b,c) (((a)<=(b))&&((b)<=(c)))
using namespace std;

typedef long long ll;
typedef unsigned long long ull;
typedef long double ld;

int main(void){
	string s;
	re(i,10){
		re(j,10){
			re(k,10){
				cout<<i<<j<<k<<endl;
				cin>>s;
				if(s[0]=='u')return 0;
			}
		}
	}
	return 0;
}
0