結果

問題 No.380 悪の台本
ユーザー face4face4
提出日時 2018-09-02 17:42:22
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
RE  
実行時間 -
コード長 2,405 bytes
コンパイル時間 945 ms
コンパイル使用メモリ 80,196 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-04-09 20:43:35
合計ジャッジ時間 2,113 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 RE -
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 1 ms
6,940 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 RE -
testcase_08 AC 5 ms
6,944 KB
testcase_09 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
#include<vector>
#include<algorithm>
using namespace std;
#define print(x, a, b) if(x) cout << a << endl; else cout << b << endl

bool isSymbol(char x){
    bool small = 'a' <= x && x <= 'z';
    bool large = 'A' <= x && x <= 'Z';
    bool number = '0' <= x && x <= '9';
    if(small || large || number)    return false;
    else                            return true;
}

bool startsWith(string str, string pre){
    int s = str.length(), p = pre.length();
    if(s < p)   return false;

    int j;
    for(j = 0; j < p; j++){ 
        if(str[j] != pre[j])  break;
    }

    return j == p;
}

bool check(string s, string gobi){
    reverse(s.begin(), s.end());
    reverse(gobi.begin(), gobi.end());

    int pos = 0;
    while(pos < s.length() && isSymbol(s[pos])){
        pos++;
    }

    if(pos > 3) return false;

    bool judge = true;
    for(int i = 0; i < 3; i++){
        if(pos+i > s.length()-1 || isSymbol(s[pos+i]))  judge = false;
        else                    s[pos+i] = tolower(s[pos+i]);
    }

    if(!judge)  return false;

    return startsWith(s.substr(pos), gobi);
}

vector<string> split(string str, char del = ' '){
    vector<string> ret;
    string cutoff = "";
    for(int i = 0; i < str.length(); i++){
        if(str[i] == del){
            if(cutoff != "")    ret.push_back(cutoff);
            cutoff = "";
        }else{
            cutoff += str[i];
        }
    }
    if(cutoff != "")    ret.push_back(cutoff);
    return ret;
}

string people[5] = {"digi", "petit", "gema", "piyo", "rabi"};
string suffix[4] = {"nyo", "nyu", "gema", "pyo"};

int main(){
    string s;
    while(getline(cin, s)){
        vector<string> line = split(s);
        int person;
        for(person = 0; person < 5; person++){
            if(line[0] == people[person])   break;
        }

        if(person == 5){
            cout << "WRONG!" << endl;
            continue;
        }

        if(person == 4){
            bool judge = false;
            for(int i = 1; i < line.size(); i++){
                for(int j = 0; j < line[i].size(); j++){
                    if(isSymbol(line[i][j]))    judge = true;
                }
            }
            print(judge, "CORRECT (maybe)", "WRONG!");
            continue;
        }

        string last = line[line.size()-1];

        print(check(last, suffix[person]) ,"CORRECT (maybe)", "WRONG!");
    }
    return 0;
}
0