結果
問題 | No.304 鍵(1) |
ユーザー | takubokudori |
提出日時 | 2017-09-01 00:18:23 |
言語 | C++11 (gcc 11.4.0) |
結果 |
AC
|
実行時間 | 62 ms / 2,000 ms |
コード長 | 849 bytes |
コンパイル時間 | 933 ms |
コンパイル使用メモリ | 89,352 KB |
実行使用メモリ | 25,220 KB |
平均クエリ数 | 309.17 |
最終ジャッジ日時 | 2024-07-17 01:26:10 |
合計ジャッジ時間 | 1,764 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 29 ms
25,088 KB |
testcase_01 | AC | 29 ms
25,220 KB |
testcase_02 | AC | 62 ms
24,964 KB |
testcase_03 | AC | 30 ms
25,220 KB |
testcase_04 | AC | 45 ms
25,220 KB |
testcase_05 | AC | 28 ms
24,812 KB |
ソースコード
#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; }