結果
問題 |
No.88 次はどっちだ
|
ユーザー |
![]() |
提出日時 | 2025-01-23 00:31:17 |
言語 | Go (1.23.4) |
結果 |
WA
|
実行時間 | - |
コード長 | 266 bytes |
コンパイル時間 | 16,584 ms |
コンパイル使用メモリ | 256,112 KB |
実行使用メモリ | 6,820 KB |
最終ジャッジ日時 | 2025-01-23 00:31:49 |
合計ジャッジ時間 | 17,620 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 9 WA * 2 |
ソースコード
package main import . "fmt" import . "strings" func main() { var s string Scan(&s) d :=0 for i:=0;i<8;i++ { var b string Scan(&b) d += Count(b,".") } if d%2==0 { Println(s) } else if s == "yukio" { Println("oda") } else { Println("yukiko") } }