結果
問題 | No.88 次はどっちだ |
ユーザー | jimano |
提出日時 | 2018-02-04 17:43:00 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 632 bytes |
コンパイル時間 | 2,655 ms |
コンパイル使用メモリ | 74,524 KB |
実行使用メモリ | 50,452 KB |
最終ジャッジ日時 | 2024-06-30 04:00:21 |
合計ジャッジ時間 | 3,659 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 46 ms
50,372 KB |
testcase_01 | WA | - |
testcase_02 | AC | 47 ms
49,896 KB |
testcase_03 | AC | 47 ms
50,036 KB |
testcase_04 | AC | 46 ms
50,156 KB |
testcase_05 | AC | 47 ms
50,212 KB |
testcase_06 | WA | - |
testcase_07 | AC | 45 ms
50,260 KB |
testcase_08 | AC | 44 ms
50,236 KB |
testcase_09 | WA | - |
testcase_10 | WA | - |
ソースコード
package me.yukicoder.lv1_5; import java.io.BufferedReader; import java.io.IOException; import java.io.InputStreamReader; public class No0088 { public static void main(String[] args) { try (BufferedReader br = new BufferedReader(new InputStreamReader(System.in))) { String sente = br.readLine(); String gote = sente.equals("oda") ? "yukiko" : "oda"; int teban = 0; for (int i = 0; i < 8; i++) { for (char c : br.readLine().toCharArray()) { teban = (c != '.') ? teban++ : teban; } } System.out.println(teban % 2 == 0 ? sente : gote); } catch (IOException e) { e.printStackTrace(); } } }