結果
問題 | No.351 市松スライドパズル |
ユーザー | ziita |
提出日時 | 2017-06-27 00:07:03 |
言語 | Java21 (openjdk 21) |
結果 |
TLE
|
実行時間 | - |
コード長 | 3,155 bytes |
コンパイル時間 | 2,462 ms |
コンパイル使用メモリ | 79,508 KB |
実行使用メモリ | 257,880 KB |
最終ジャッジ日時 | 2024-10-04 09:56:07 |
合計ジャッジ時間 | 7,749 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 428 ms
51,740 KB |
testcase_01 | AC | 50 ms
37,168 KB |
testcase_02 | AC | 51 ms
37,372 KB |
testcase_03 | AC | 47 ms
37,320 KB |
testcase_04 | AC | 45 ms
37,080 KB |
testcase_05 | AC | 46 ms
37,180 KB |
testcase_06 | AC | 45 ms
37,272 KB |
testcase_07 | AC | 44 ms
37,348 KB |
testcase_08 | AC | 46 ms
36,748 KB |
testcase_09 | AC | 46 ms
37,392 KB |
testcase_10 | AC | 47 ms
37,180 KB |
testcase_11 | AC | 46 ms
37,008 KB |
testcase_12 | AC | 46 ms
37,228 KB |
testcase_13 | TLE | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
ソースコード
import java.io.ByteArrayInputStream; import java.io.IOException; import java.io.InputStream; import java.io.PrintWriter; import java.util.Arrays; import java.util.InputMismatchException; import java.io.OutputStream; import java.util.StringTokenizer; import java.io.BufferedReader; import java.io.InputStreamReader; import java.util.HashMap; import java.util.Map; import java.util.ArrayList; import java.util.List; import java.util.Scanner; import java.math.BigDecimal; /** * Built using CHelper plug-in * Actual solution is at the top */ public class Main { public static void main(String[] args) { InputStream inputStream = System.in; OutputStream outputStream = System.out; InputReader in = new InputReader(inputStream); PrintWriter out = new PrintWriter(outputStream); Task solver = new Task(); solver.solve(1, in, out); out.close(); } static class Task { public void solve(int testNumber, InputReader in, PrintWriter out) { int H = in.nextInt(); int W = in.nextInt(); int N = in.nextInt(); boolean board[][] = new boolean[H][W]; for(int i=0; i<H; i++){ for(int j=0; j<W; j++){ if((i+j%2)%2==0) board[i][j]=true; } } boolean copy[][] = new boolean[H][W]; for(int i=0; i<N; i++){ String S = in.next(); int K = in.nextInt(); if(S.equals("R")){ for(int j=0; j<W; j++){ if(j==0) copy[K][j] = board[K][W-1]; else copy[K][j] = board[K][j-1]; } for(int j=0; j<W; j++){ board[K][j] = copy[K][j]; } } else if(S.equals("C")){ for(int j=0; j<H; j++){ if(j==0) copy[j][K] = board[H-1][K]; else copy[j][K] = board[j-1][K]; } for(int j=0; j<H; j++){ board[j][K] = copy[j][K]; } } } if(board[0][0]) out.println("white"); else out.println("black"); } } static class InputReader { public BufferedReader reader; public StringTokenizer tokenizer; public InputReader(InputStream stream) { reader = new BufferedReader(new InputStreamReader(stream), 32768); tokenizer = null; } public String next() { while (tokenizer == null || !tokenizer.hasMoreTokens()) { try { tokenizer = new StringTokenizer(reader.readLine()); } catch (IOException e) { throw new RuntimeException(e); } } return tokenizer.nextToken(); } public int nextInt() { return Integer.parseInt(next()); } public long nextLong() { return Long.parseLong(next()); } } }