Please sign in first.
Submission #764513
Source Code Expand
#include <bits/stdc++.h>
using namespace std;
int main()
{
string S,T("WBWBWWBWBWBW"),U;
string ans [7] = {"Do","Re","Mi","Fa","So","La","Si"};
cin >> S;
for(int i = 0;i < 7;i++){
U.clear();
int pos = 0;
for(int j = 0;j < i;j++){
pos = T.find("W",pos + 1);
}
U += T.substr(pos);
while(U.size() < S.size()){
U += T;
}
if(S == U.substr(0,S.size())){
cout << ans [i] << endl;
return 0;
}
}
return 0;
}
Submission Info
| Submission Time | |
|---|---|
| Task | C - ピアニスト高橋君 |
| User | cmmnd17 |
| Language | C++14 (GCC 5.4.1) |
| Score | 100 |
| Code Size | 466 Byte |
| Status | AC |
| Exec Time | 4 ms |
| Memory | 256 KiB |
Judge Result
| Set Name | Sample | All | ||||
|---|---|---|---|---|---|---|
| Score / Max Score | 0 / 0 | 100 / 100 | ||||
| Status |
|
|
| 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 | 4 ms | 256 KiB |
| handmade_0.txt | AC | 4 ms | 256 KiB |
| handmade_1.txt | AC | 4 ms | 256 KiB |
| handmade_2.txt | AC | 4 ms | 256 KiB |
| handmade_3.txt | AC | 4 ms | 256 KiB |
| handmade_4.txt | AC | 4 ms | 256 KiB |
| handmade_5.txt | AC | 4 ms | 256 KiB |
| handmade_6.txt | AC | 4 ms | 256 KiB |