結果

問題 No.88 次はどっちだ
ユーザー uafr_csuafr_cs
提出日時 2015-05-15 03:23:22
言語 Java21
(openjdk 21)
結果
AC  
実行時間 118 ms / 5,000 ms
コード長 579 bytes
コンパイル時間 1,779 ms
コンパイル使用メモリ 74,764 KB
実行使用メモリ 41,452 KB
最終ジャッジ日時 2024-07-06 03:49:49
合計ジャッジ時間 3,591 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 101 ms
40,064 KB
testcase_01 AC 105 ms
40,104 KB
testcase_02 AC 96 ms
40,812 KB
testcase_03 AC 111 ms
41,208 KB
testcase_04 AC 118 ms
41,156 KB
testcase_05 AC 106 ms
41,324 KB
testcase_06 AC 117 ms
40,952 KB
testcase_07 AC 109 ms
40,700 KB
testcase_08 AC 110 ms
41,288 KB
testcase_09 AC 103 ms
39,800 KB
testcase_10 AC 111 ms
41,452 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Arrays;
import java.util.LinkedList;
import java.util.Scanner;

public class Main {
	
	// コマの数 は ターン数 + 4 で不変な条件なので, これを利用する.
	public static void main(String[] args){
		Scanner sc = new Scanner(System.in);
		
		final String fst_name = sc.next();
		final String snd_name = "oda".equals(fst_name) ? "yukiko" : "oda";
		
		int count = 0;
		while(sc.hasNext()){
			for(char c : sc.next().toCharArray()){
				count += c != '.' ? 1 : 0;
			}
		}
		
		System.out.println(count % 2 == 0 ? fst_name : snd_name);
		
	}
	
}
0