結果

問題 No.88 次はどっちだ
ユーザー chacoder1
提出日時 2021-03-29 21:58:04
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 2 ms / 5,000 ms
コード長 361 bytes
コンパイル時間 1,806 ms
コンパイル使用メモリ 193,344 KB
最終ジャッジ日時 2025-01-20 00:33:51
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 11
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
#define rep(i,n) for(int i=0;i<n;i++)

int main(){
  string s;
  cin>>s;
  string b;
  int cnt=0;
  rep(i,8){
    cin>>b;
    rep(j,8){
      if(b.at(j)=='.') cnt++;
    }
  }
  if(s=="oda") cnt++;
  if(cnt%2==1){
    cout<<"oda"<<endl;
  }
  else{
    cout<<"yukiko"<<endl;
  }
  return 0;
}
0