結果
問題 | No.88 次はどっちだ |
ユーザー | yagi2 |
提出日時 | 2017-04-25 12:56:13 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 910 bytes |
コンパイル時間 | 2,142 ms |
コンパイル使用メモリ | 75,340 KB |
実行使用メモリ | 54,244 KB |
最終ジャッジ日時 | 2024-09-13 08:42:07 |
合計ジャッジ時間 | 4,253 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 128 ms
53,784 KB |
testcase_01 | AC | 129 ms
53,840 KB |
testcase_02 | AC | 128 ms
53,776 KB |
testcase_03 | AC | 127 ms
54,012 KB |
testcase_04 | WA | - |
testcase_05 | AC | 131 ms
54,008 KB |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | AC | 129 ms
53,852 KB |
testcase_09 | WA | - |
testcase_10 | WA | - |
ソースコード
import java.util.ArrayList; import java.util.List; import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner sc = new Scanner(System.in); String first = sc.next(); List<String> ban = new ArrayList<>(); for (int i = 0; i < 8; i++) { ban.add(sc.next()); } int w = 0; int b = 0; for (int i = 0; i < 8; i++) { for (String s : ban.get(i).split("")) { if ("w".equals(s)) w++; if ("b".equals(s)) b++; } } if (w == b) { System.out.println(first); } else if (w > b) { System.out.println(first); } else { if ("oda".equals(first)) { System.out.println("yukiko"); } else { System.out.println("oda"); } } } }