結果

問題 No.88 次はどっちだ
ユーザー motxxmotxx
提出日時 2014-12-07 19:04:44
言語 C++11
(gcc 13.3.0)
結果
AC  
実行時間 2 ms / 5,000 ms
コード長 440 bytes
コンパイル時間 1,296 ms
コンパイル使用メモリ 158,560 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-06-11 16:05:33
合計ジャッジ時間 1,701 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 11
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;

#define REP(i,a,b) for(int i=a;i<(int)b;i++)
#define rep(i,n) REP(i,0,n)

string ban[2] = {"oda", "yukiko"};

int main() {
  
  string s; cin >> s;
  int cnt = 0;
  if(s == "yukiko") cnt ++;
  rep(i, 8) rep(j, 8) {
    char ch; cin >> ch;
    if(ch != '.') cnt ++;
  }
  
  if((64-cnt) % 2 == 0) cout << ban[0] << endl;
  else cout << ban[1] << endl;
  
  return 0;
}
0