結果
問題 | No.304 鍵(1) |
ユーザー | hirokazu1020 |
提出日時 | 2015-11-27 22:32:26 |
言語 | C++11 (gcc 11.4.0) |
結果 |
AC
|
実行時間 | 61 ms / 2,000 ms |
コード長 | 749 bytes |
コンパイル時間 | 750 ms |
コンパイル使用メモリ | 96,028 KB |
実行使用メモリ | 25,220 KB |
平均クエリ数 | 309.17 |
最終ジャッジ日時 | 2024-07-16 20:41:40 |
合計ジャッジ時間 | 1,657 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 27 ms
24,580 KB |
testcase_01 | AC | 29 ms
24,836 KB |
testcase_02 | AC | 61 ms
25,220 KB |
testcase_03 | AC | 29 ms
24,964 KB |
testcase_04 | AC | 44 ms
24,836 KB |
testcase_05 | AC | 28 ms
24,812 KB |
ソースコード
#define _CRT_SECURE_NO_WARNINGS #include<sstream> #include<iostream> #include<cstdio> #include<cstdlib> #include<cstring> #include<climits> #include<cmath> #include<string> #include<vector> #include<set> #include<map> #include<queue> #include<numeric> #include<functional> #include<algorithm> #include<bitset> #include<tuple> #include<unordered_set> #include<random> using namespace std; #define INF (1<<29) #define rep(i,n) for(int i=0;i<(int)(n);i++) #define all(v) v.begin(),v.end() #define uniq(v) v.erase(unique(all(v)),v.end()) #define indexOf(v,x) (find(all(v),x)-v.begin()) int main() { ios::sync_with_stdio(0); cin.tie(0); rep(i,1000){ cout<<i/100<<i/10%10<<i%10<<endl; string s; cin>>s; if(s=="unlocked")break; } return 0; }