結果
問題 | No.355 数当てゲーム(2) |
ユーザー | koyumeishi |
提出日時 | 2016-04-01 22:41:39 |
言語 | C++11 (gcc 11.4.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,339 bytes |
コンパイル時間 | 1,155 ms |
コンパイル使用メモリ | 101,000 KB |
実行使用メモリ | 40,876 KB |
平均クエリ数 | 42.06 |
最終ジャッジ日時 | 2024-07-16 08:54:20 |
合計ジャッジ時間 | 11,219 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | TLE | - |
testcase_01 | AC | 22 ms
24,592 KB |
testcase_02 | AC | 22 ms
24,976 KB |
testcase_03 | AC | 22 ms
24,976 KB |
testcase_04 | AC | 22 ms
25,220 KB |
testcase_05 | AC | 21 ms
24,848 KB |
testcase_06 | AC | 22 ms
24,592 KB |
testcase_07 | AC | 22 ms
24,592 KB |
testcase_08 | AC | 22 ms
24,976 KB |
testcase_09 | AC | 23 ms
25,232 KB |
testcase_10 | AC | 22 ms
25,232 KB |
testcase_11 | AC | 21 ms
24,848 KB |
testcase_12 | AC | 23 ms
25,232 KB |
testcase_13 | AC | 22 ms
24,976 KB |
testcase_14 | AC | 22 ms
25,232 KB |
testcase_15 | AC | 22 ms
24,592 KB |
testcase_16 | AC | 20 ms
24,592 KB |
testcase_17 | AC | 22 ms
24,976 KB |
testcase_18 | AC | 21 ms
25,220 KB |
testcase_19 | AC | 23 ms
24,848 KB |
testcase_20 | AC | 24 ms
25,208 KB |
testcase_21 | AC | 23 ms
24,952 KB |
testcase_22 | AC | 22 ms
24,952 KB |
testcase_23 | AC | 22 ms
24,568 KB |
testcase_24 | AC | 22 ms
24,568 KB |
testcase_25 | AC | 23 ms
25,208 KB |
testcase_26 | AC | 22 ms
25,208 KB |
testcase_27 | AC | 21 ms
25,208 KB |
testcase_28 | AC | 23 ms
24,952 KB |
testcase_29 | AC | 22 ms
24,568 KB |
testcase_30 | AC | 22 ms
24,568 KB |
testcase_31 | AC | 21 ms
24,952 KB |
testcase_32 | AC | 23 ms
25,208 KB |
testcase_33 | AC | 22 ms
24,952 KB |
testcase_34 | AC | 22 ms
24,952 KB |
testcase_35 | TLE | - |
testcase_36 | -- | - |
testcase_37 | -- | - |
testcase_38 | -- | - |
testcase_39 | -- | - |
testcase_40 | -- | - |
testcase_41 | -- | - |
testcase_42 | -- | - |
testcase_43 | -- | - |
testcase_44 | -- | - |
testcase_45 | -- | - |
testcase_46 | -- | - |
testcase_47 | -- | - |
testcase_48 | -- | - |
testcase_49 | -- | - |
testcase_50 | -- | - |
testcase_51 | -- | - |
ソースコード
#include <iostream> #include <vector> #include <cstdio> #include <sstream> #include <map> #include <string> #include <algorithm> #include <queue> #include <cmath> #include <functional> #include <set> #include <ctime> #include <random> #include <chrono> using namespace std; template<class T> istream& operator >> (istream& is, vector<T>& vec){for(T& val: vec) is >> val; return is;} template<class T> istream& operator , (istream& is, T& val){ return is >> val;} template<class T> ostream& operator << (ostream& os, const vector<T>& vec){for(int i=0; i<vec.size(); i++) os << vec[i] << (i==vec.size()-1?"":" "); return os;} template<class T> ostream& operator , (ostream& os, const T& val){ return os << " " << val;} template<class T> ostream& operator >> (ostream& os, const T& val){ return os << " " << val;} int main(){ vector<int> n = {0,1,2,3}; set<int> s; for(int i=0; i<10; i++){ n = {i, (i+1)%10, (i+2)%10, (i+3)%10}; int a,b; cout << n << endl; cin >> a,b; for(int k=4; k<10; k++){ n[0] = (i+k)%10; int c,d; cout << n << endl; cin >> c,d; if(a+b > c+d){ s.insert(i); break; } } } n = vector<int>(s.begin(), s.end()); do{ cout << n << endl; int a,b; cin >> a >> b; if(a==4 && b==0){ return 0; } }while(next_permutation(n.begin(), n.end())); abort(); return 0; }