結果

問題 No.351 市松スライドパズル
ユーザー 37zigen37zigen
提出日時 2016-04-01 20:26:02
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 958 bytes
コンパイル時間 1,874 ms
コンパイル使用メモリ 77,696 KB
実行使用メモリ 149,092 KB
最終ジャッジ日時 2024-10-02 08:57:12
合計ジャッジ時間 16,793 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,228 ms
134,500 KB
testcase_01 WA -
testcase_02 AC 107 ms
41,464 KB
testcase_03 AC 100 ms
41,036 KB
testcase_04 AC 109 ms
41,416 KB
testcase_05 AC 111 ms
41,520 KB
testcase_06 AC 101 ms
41,304 KB
testcase_07 WA -
testcase_08 AC 109 ms
41,496 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 1,296 ms
134,824 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 1,240 ms
134,696 KB
testcase_19 WA -
testcase_20 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

package yukicoder351;
import java.io.PrintWriter;
import java.util.Scanner;
import java.io.*;
public class Main {
	public static void main(String[] args){
		Scanner sc=new Scanner(System.in);
		try{
			BufferedReader bf=new BufferedReader(new InputStreamReader(System.in));
		
		PrintWriter pw=new PrintWriter(System.out);
		int h=Integer.parseInt(sc.next());
		int w=Integer.parseInt(sc.next());
		int n=Integer.parseInt(sc.next());
		int x=0;
		int y=0;
		String[] s=new String[n];
		int[] k=new int[n];
		for(int i=0;i<n;i++){
			s[i]=sc.next();
			//行の操作R、列の操作C
			k[i]=bf.read();
		}
		for(int i=n-1;i>=0;i--){
			if(s[i].equals("R")&&k[i]==y){
				if(x==0){
					x=w-1;
				}else if(x!=0){
					x--;
				}
			}else if(s[i].equals("C")&&k[i]==x){
				if(y==0){
					y=h-1;
				}else if(y!=0){
					y--;
				}
			}
		}
		pw.println((x+y)%2==0?"white":"black");
		pw.close();
		}catch(IOException e){
			e.printStackTrace();
		}
	}
		
}
0