結果
問題 | No.304 鍵(1) |
ユーザー | HAHAHA |
提出日時 | 2015-11-28 15:13:43 |
言語 | C++11 (gcc 11.4.0) |
結果 |
AC
|
実行時間 | 62 ms / 2,000 ms |
コード長 | 943 bytes |
コンパイル時間 | 714 ms |
コンパイル使用メモリ | 74,132 KB |
実行使用メモリ | 25,220 KB |
平均クエリ数 | 309.17 |
最終ジャッジ日時 | 2024-07-16 21:54:11 |
合計ジャッジ時間 | 1,408 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 23 ms
24,836 KB |
testcase_01 | AC | 25 ms
24,452 KB |
testcase_02 | AC | 62 ms
25,220 KB |
testcase_03 | AC | 25 ms
25,208 KB |
testcase_04 | AC | 40 ms
25,220 KB |
testcase_05 | AC | 25 ms
24,812 KB |
ソースコード
#include<iostream> #include<cstdio> #include<cstring> #include<string> #include<vector> #include<queue> #include<stack> #include<set> #include<map> #include<utility> #include<sstream> #include<cctype> #include<cmath> #include<algorithm> using namespace std; #define ALL(x) (x).begin(),(x).end() #define RALL(x) (x).rbegin(), (x).rend() #define rev(i,n) for(int (i)=(n-1);(i)>=0;(i)--) #define repp(i,n) for(int (i)=1;(i)<=(n);(i)++) #define rep(i,n) for(int (i)=0;(i)<(n);(i)++) #define rev(i,n) for(int (i)=(n-1);(i)>=0;(i)--) #define clr(a) memset((a), 0 ,sizeof(a)) typedef pair<int,int> P; typedef vector<pair<int,int> > pii; typedef map<string,int> mi; void solve(){ string s; int a,b,c; for(int i=0;i<1000;++i){ a = i/100; b = (i%100)/10; c = i%10; cout << a << b << c << endl; cin >> s; if(s=="unlocked") break; } } int main(void){ solve(); return 0; }