mirror of
https://git.sb/baoshuo/OI-codes.git
synced 2024-12-24 03:31:59 +00:00
A - Weather Forecast
https://atcoder.jp/contests/abc218/submissions/25797324
This commit is contained in:
parent
6c0cc1966e
commit
3cabda8654
12
AtCoder/ABC218/A/A.cpp
Normal file
12
AtCoder/ABC218/A/A.cpp
Normal file
@ -0,0 +1,12 @@
|
||||
#include <bits/stdc++.h>
|
||||
|
||||
using namespace std;
|
||||
|
||||
int n;
|
||||
char s[10];
|
||||
|
||||
int main() {
|
||||
cin >> n >> s + 1;
|
||||
cout << (s[n] == 'o' ? "Yes" : "No") << endl;
|
||||
return 0;
|
||||
}
|
Loading…
Reference in New Issue
Block a user