結果

問題 No.88 次はどっちだ
ユーザー h_noson
提出日時 2016-02-14 22:01:46
言語 C++11(廃止可能性あり)
(gcc 13.3.0)
結果
AC  
実行時間 2 ms / 5,000 ms
コード長 355 bytes
コンパイル時間 419 ms
コンパイル使用メモリ 55,556 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-09-22 06:41:22
合計ジャッジ時間 936 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 11
権限があれば一括ダウンロードができます

ソースコード

diff #

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

int main() {
    string s;
    int cnt = 0;
    cin >> s;
    char c;
    for (int i = 0; i < 64 && cin >> c; i++) {
        if (c != '.')
            cnt++;
    }
    if (cnt % 2 == 0)
        cout << s << endl;
    else
        cout << (s == "oda" ? "yukiko" : "oda") << endl;
    return 0;
}
0