結果
問題 | No.88 次はどっちだ |
ユーザー |
![]() |
提出日時 | 2025-01-23 00:33:43 |
言語 | Go (1.23.4) |
結果 |
AC
|
実行時間 | 2 ms / 5,000 ms |
コード長 | 267 bytes |
コンパイル時間 | 20,880 ms |
コンパイル使用メモリ | 243,780 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2025-01-23 00:34:06 |
合計ジャッジ時間 | 17,118 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 11 |
ソースコード
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 == "yukiko" { Println("oda") } else { Println("yukiko") } }