結果
問題 | No.355 数当てゲーム(2) |
ユーザー | めうめう🎒 |
提出日時 | 2016-04-01 22:42:57 |
言語 | C++11 (gcc 11.4.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 1,510 bytes |
コンパイル時間 | 745 ms |
コンパイル使用メモリ | 74,684 KB |
実行使用メモリ | 25,616 KB |
平均クエリ数 | 104.08 |
最終ジャッジ日時 | 2024-07-16 08:55:40 |
合計ジャッジ時間 | 8,018 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 26 ms
24,976 KB |
testcase_01 | RE | - |
testcase_02 | AC | 23 ms
25,232 KB |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | AC | 24 ms
25,244 KB |
testcase_07 | AC | 24 ms
24,976 KB |
testcase_08 | AC | 23 ms
24,848 KB |
testcase_09 | RE | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | RE | - |
testcase_14 | AC | 23 ms
24,848 KB |
testcase_15 | AC | 24 ms
24,848 KB |
testcase_16 | AC | 25 ms
24,592 KB |
testcase_17 | AC | 24 ms
24,592 KB |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | AC | 25 ms
24,824 KB |
testcase_21 | AC | 24 ms
24,824 KB |
testcase_22 | AC | 26 ms
24,952 KB |
testcase_23 | AC | 26 ms
25,208 KB |
testcase_24 | AC | 24 ms
25,208 KB |
testcase_25 | WA | - |
testcase_26 | AC | 24 ms
24,824 KB |
testcase_27 | AC | 26 ms
24,952 KB |
testcase_28 | AC | 25 ms
24,568 KB |
testcase_29 | WA | - |
testcase_30 | WA | - |
testcase_31 | WA | - |
testcase_32 | AC | 23 ms
24,568 KB |
testcase_33 | AC | 24 ms
24,824 KB |
testcase_34 | WA | - |
testcase_35 | AC | 23 ms
25,196 KB |
testcase_36 | AC | 25 ms
24,812 KB |
testcase_37 | AC | 24 ms
24,940 KB |
testcase_38 | AC | 26 ms
24,940 KB |
testcase_39 | AC | 25 ms
24,556 KB |
testcase_40 | AC | 25 ms
25,196 KB |
testcase_41 | AC | 24 ms
24,556 KB |
testcase_42 | AC | 23 ms
25,196 KB |
testcase_43 | AC | 24 ms
24,556 KB |
testcase_44 | WA | - |
testcase_45 | WA | - |
testcase_46 | WA | - |
testcase_47 | AC | 26 ms
25,324 KB |
testcase_48 | AC | 27 ms
24,940 KB |
testcase_49 | AC | 25 ms
24,940 KB |
testcase_50 | WA | - |
testcase_51 | WA | - |
ソースコード
#include <algorithm> #include <cstdio> #include <iostream> #include <map> #include <math.h> #include <queue> #include <set> #include <sstream> #include <stack> #include <string> #include <vector> using namespace std; #define ll long long #define INF (1 << 30) #define INFLL (1LL << 60) int main() { bool not_num[10] = {}; int use_num[4] = {}; int X,Y; while(true){ for(int i = 0;i < 10;i++){ if(not_num[i]) continue; for(int j = i + 1;j < 10;j++){ if(not_num[j]) continue; for(int k = j + 1;k < 10;k++){ for(int l = k + 1;l < 10;l++){ cout << i << " " << j << " " << k << " " << l << endl; cin >> X >> Y; if(X == 0 && Y == 0){ not_num[i] = true; not_num[j] = true; not_num[k] = true; not_num[l] = true; } if(X == 4) break; } if(X == 4) break; } if(X == 4) break; } if(X == 4) break; } if(X == 4) break; int how = 0; for(int i = 0;i < 10;i++){ if(not_num[i] == false){ use_num[how] = i; how++; } } for(int i = 0;i < 4;i++){ for(int j = 0;j < 4;j++){ if(i == j) continue; for(int k = 0;k < 4;k++){ if(k == i || k == j) continue; for(int l = 0;l < 4;l++){ if(l == i || l == j || l == k) continue; cout << use_num[i] << " " << use_num[j] << " " << use_num[k] << " " << use_num[l] << endl; cin >> X >> Y; if(X == 4) break; } if(X == 4) break; } if(X == 4) break; } if(X == 4) break; } break; } return 0; }