結果

問題 No.26 シャッフルゲーム
ユーザー kazapyon27kazapyon27
提出日時 2017-06-18 22:07:09
言語 Java21
(openjdk 21)
結果
AC  
実行時間 65 ms / 5,000 ms
コード長 747 bytes
コンパイル時間 4,002 ms
コンパイル使用メモリ 76,688 KB
実行使用メモリ 50,656 KB
最終ジャッジ日時 2024-10-01 20:33:38
合計ジャッジ時間 5,219 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 60 ms
50,428 KB
testcase_01 AC 61 ms
50,392 KB
testcase_02 AC 65 ms
50,568 KB
testcase_03 AC 60 ms
50,044 KB
testcase_04 AC 61 ms
50,388 KB
testcase_05 AC 62 ms
50,520 KB
testcase_06 AC 64 ms
50,428 KB
testcase_07 AC 63 ms
50,196 KB
testcase_08 AC 64 ms
50,656 KB
testcase_09 AC 63 ms
50,128 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

/*No.26 シャッフルゲーム*/
import java.io.*;
public class No26 {
	public static void main(String[] args) {
		try(BufferedReader input =new BufferedReader(new InputStreamReader(System.in))){
			String place = input.readLine();
			Short counter =Short.parseShort(input.readLine());
			String h_ChageCup[] = new String[2];
			String s_ChageCup;
			for(Short i=0;i<counter;i++){
				h_ChageCup=input.readLine().split(" ");
				s_ChageCup=h_ChageCup[0]+h_ChageCup[1];
				switch(s_ChageCup.indexOf(place)){
					case 0:
						place=h_ChageCup[1];
						break;
					case 1:
						place=h_ChageCup[0];
						break;						
					case -1:
						break;
				}
			}
			System.out.println(place);
		}catch(Exception e){
			e.printStackTrace();
		}		
	}
}
0