結果
| 問題 | No.88 次はどっちだ |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2020-01-16 16:49:46 |
| 言語 | C++14 (gcc 15.2.0 + boost 1.90.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 356 bytes |
| 記録 | |
| コンパイル時間 | 326 ms |
| コンパイル使用メモリ | 74,076 KB |
| 実行使用メモリ | 5,888 KB |
| 最終ジャッジ日時 | 2026-07-28 07:41:14 |
| 合計ジャッジ時間 | 1,360 ms |
|
ジャッジサーバーID (参考情報) |
judge1_0 / judge3_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | WA * 11 |
ソースコード
#include <iostream>
using namespace std;
int main(){
string s;cin>>s;
int k = 0;
for(int i = 0; 64 > i; i++){
char t;cin>>t;
if(t != '.')k++;
}
if(k%2){
cout << s << endl;
}else{
if(s == "oda"){
cout << "yukiko" << endl;
}else{
cout << "oda" << endl;
}
}
}