結果
| 問題 | No.88 次はどっちだ |
| コンテスト | |
| ユーザー |
toto
|
| 提出日時 | 2025-03-27 17:59:09 |
| 言語 | C++17 (gcc 15.2.0 + boost 1.90.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 348 bytes |
| 記録 | |
| コンパイル時間 | 80 ms |
| コンパイル使用メモリ | 40,016 KB |
| 実行使用メモリ | 9,292 KB |
| 最終ジャッジ日時 | 2026-07-07 23:54:19 |
| 合計ジャッジ時間 | 1,062 ms |
|
ジャッジサーバーID (参考情報) |
judge3_0 / judge2_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 1 WA * 10 |
ソースコード
#include <stdio.h>
int main(){
char str[10];
scanf("%s",str);
int count = 0;
for(int i = 0;i < 8;i ++){
char tmp[8];
for(int j = 0;j < 8;j ++){
scanf("%s",tmp);
if(tmp[j] == 'b'){
count++;
}
}
}
if(count % 2 == 0){
printf("%s",str);
}else{
if(str[0] == 'y'){
printf("oda");
}else{
printf("yukiko");
}
}
}
toto