結果
問題 | No.832 麻雀修行中 |
ユーザー | YkMlq |
提出日時 | 2019-05-24 23:04:11 |
言語 | C++11 (gcc 11.4.0) |
結果 |
AC
|
実行時間 | 236 ms / 2,000 ms |
コード長 | 1,734 bytes |
コンパイル時間 | 1,867 ms |
コンパイル使用メモリ | 181,116 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-09-17 12:10:37 |
合計ジャッジ時間 | 10,585 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 229 ms
5,248 KB |
testcase_01 | AC | 230 ms
5,376 KB |
testcase_02 | AC | 229 ms
5,376 KB |
testcase_03 | AC | 232 ms
5,376 KB |
testcase_04 | AC | 229 ms
5,376 KB |
testcase_05 | AC | 230 ms
5,376 KB |
testcase_06 | AC | 229 ms
5,376 KB |
testcase_07 | AC | 230 ms
5,376 KB |
testcase_08 | AC | 231 ms
5,376 KB |
testcase_09 | AC | 228 ms
5,376 KB |
testcase_10 | AC | 231 ms
5,376 KB |
testcase_11 | AC | 232 ms
5,376 KB |
testcase_12 | AC | 231 ms
5,376 KB |
testcase_13 | AC | 230 ms
5,376 KB |
testcase_14 | AC | 228 ms
5,376 KB |
testcase_15 | AC | 229 ms
5,376 KB |
testcase_16 | AC | 230 ms
5,376 KB |
testcase_17 | AC | 230 ms
5,376 KB |
testcase_18 | AC | 236 ms
5,376 KB |
testcase_19 | AC | 231 ms
5,376 KB |
testcase_20 | AC | 228 ms
5,376 KB |
testcase_21 | AC | 228 ms
5,376 KB |
testcase_22 | AC | 232 ms
5,376 KB |
testcase_23 | AC | 233 ms
5,376 KB |
testcase_24 | AC | 231 ms
5,376 KB |
testcase_25 | AC | 229 ms
5,376 KB |
testcase_26 | AC | 230 ms
5,376 KB |
testcase_27 | AC | 230 ms
5,376 KB |
testcase_28 | AC | 229 ms
5,376 KB |
testcase_29 | AC | 228 ms
5,376 KB |
testcase_30 | AC | 228 ms
5,376 KB |
ソースコード
#include <bits/stdc++.h> #define rep(i, n) for(int i=0; i<(n); ++i) #define rep1(i,n) for(int i=1; i<=(n); ++i) #define repi(i,a,b) for(int i=a; i<=(b); ++i) #define rrep(i,n) for(int i=(n-1); i>=0; --i) #define ALL(obj) (obj).begin(), (obj).end() #define RALL(obj) (obj).rbegin(), (obj).rend() #define pb push_back #define mp make_pair #define sz(v) (int)v.size() #define UNIQUE(v) v.erase( unique(v.begin(), v.end()), v.end() ); using ll = long long; using namespace std; typedef pair<int,int> P; struct aaa{aaa(){ cin.tie(0); ios::sync_with_stdio(0); cout<<fixed<<setprecision(20);};}aaaaaaa; int MOD = 1e9 + 7; int gcd(int a,int b){return b?gcd(b,a%b):a;} int lcm(int a,int b){return (a*b)/gcd(a,b);} int dx[4]={1,0,-1,0}; int dy[4]={0,1,0,-1}; string S; set<string> ps; void pool(){ vector<int> bo = {111,222,333,444,555,666,777,888,999,123,234,345,456,567,678,789}; vector<int> at = {11,22,33,44,55,66,77,88,99}; rep(i,sz(at)) rep(j,sz(bo)) rep(k,sz(bo)) rep(l,sz(bo)) rep(m,sz(bo)){ string res = to_string(at[i])+to_string(bo[j])+to_string(bo[k])+to_string(bo[l])+to_string(bo[m]); bool flag = true; sort(ALL(res)); repi(i,'1','9') if(count(ALL(res),i) > 4) flag = false; if(flag) ps.insert(res); } return; } bool judge(string s){ sort(ALL(s)); bool flag = false; map<char,int> hai; rep(i,sz(s)) hai[s[i]]++; //条件2 int ct = 0; repi(i,'1','9') if(hai[i] == 2) ct++; if(ct == 7) flag = true; //条件1 if(ps.find(s) != ps.end()) flag = true; return flag; } int main(){ cin >> S; pool(); repi(i,'1','9'){ string T = S + (char)i; if(judge(T)) cout << (char)i << endl; } }