結果
| 問題 | No.88 次はどっちだ |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2021-10-13 13:59:21 |
| 言語 | C++14 (gcc 15.3.0 + boost 1.92.0) |
| 結果 |
AC
|
| 実行時間 | 1 ms / 5,000 ms |
| + 329µs | |
| コード長 | 363 bytes |
| 記録 | |
| コンパイル時間 | 1,127 ms |
| コンパイル使用メモリ | 201,848 KB |
| 実行使用メモリ | 6,272 KB |
| 最終ジャッジ日時 | 2026-08-29 17:00:03 |
| 合計ジャッジ時間 | 2,206 ms |
|
ジャッジサーバーID (参考情報) |
judge3_0 / judge2_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 11 |
ソースコード
#define _GLIBCXX_DEBUG
#define ll long long
#include <bits/stdc++.h>
using namespace std;
using Graph = vector<vector<int>>;
int main(){
string S; cin >> S;
int now = 0;
if(S == "oda") now++;
for(int i = 0; i < 64; i++){
char C; cin >> C;
if(C != '.') now++;
}
string ans;
now%2 == 0 ? ans = "yukiko" : ans = "oda";
cout << ans << endl;
}