Submission #1244358


Source Code Expand

#include <iostream>
#include <string>
using namespace std;

int main(){
    string s,ss="WBWBWW";
    string ans[7]={"Do","Re","Mi","Fa","So","Ra","Si"};
    cin>>s;
    int x;
    bool ok=false;
    for(int i=0;i<s.size();i++){
        for(int j=0;j<ss.size();j++){
            if(s[i+j]!=s[j])break;
            else if(j==s.size()-1)ok=true;
        }
        x=i;
        if(ok)break;
    }
    int cnt=s.size()-x-1;
    cout<<ans[cnt%7]<<endl;
    return 0;
}

Submission Info

Submission Time
Task C - ピアニスト高橋君
User mkan_0141
Language C++14 (GCC 5.4.1)
Score 0
Code Size 485 Byte
Status WA
Exec Time 1 ms
Memory 256 KB

Judge Result

Set Name Sample All
Score / Max Score 0 / 0 0 / 100
Status
AC × 1
AC × 2
WA × 6
Set Name Test Cases
Sample example_0.txt
All example_0.txt, handmade_0.txt, handmade_1.txt, handmade_2.txt, handmade_3.txt, handmade_4.txt, handmade_5.txt, handmade_6.txt
Case Name Status Exec Time Memory
example_0.txt AC 1 ms 256 KB
handmade_0.txt AC 1 ms 256 KB
handmade_1.txt WA 1 ms 256 KB
handmade_2.txt WA 1 ms 256 KB
handmade_3.txt WA 1 ms 256 KB
handmade_4.txt WA 1 ms 256 KB
handmade_5.txt WA 1 ms 256 KB
handmade_6.txt WA 1 ms 256 KB