結果
問題 | No.351 市松スライドパズル |
ユーザー | code-devo |
提出日時 | 2016-03-11 23:43:02 |
言語 | Java21 (openjdk 21) |
結果 |
TLE
|
実行時間 | - |
コード長 | 938 bytes |
コンパイル時間 | 2,366 ms |
コンパイル使用メモリ | 77,676 KB |
実行使用メモリ | 190,676 KB |
最終ジャッジ日時 | 2024-09-25 01:25:15 |
合計ジャッジ時間 | 29,054 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | TLE | - |
testcase_01 | AC | 133 ms
54,084 KB |
testcase_02 | AC | 123 ms
54,336 KB |
testcase_03 | AC | 134 ms
54,212 KB |
testcase_04 | AC | 123 ms
52,944 KB |
testcase_05 | AC | 135 ms
54,040 KB |
testcase_06 | AC | 120 ms
53,108 KB |
testcase_07 | AC | 137 ms
54,012 KB |
testcase_08 | AC | 133 ms
54,276 KB |
testcase_09 | AC | 139 ms
54,320 KB |
testcase_10 | AC | 138 ms
54,064 KB |
testcase_11 | AC | 146 ms
54,304 KB |
testcase_12 | AC | 144 ms
54,100 KB |
testcase_13 | TLE | - |
testcase_14 | TLE | - |
testcase_15 | TLE | - |
testcase_16 | TLE | - |
testcase_17 | TLE | - |
testcase_18 | TLE | - |
testcase_19 | TLE | - |
testcase_20 | TLE | - |
ソースコード
// JavaでTLE叩き出して恥ずかしい。 import java.util.ArrayList; import java.util.List; import java.util.Scanner; public class Main { public static void main(String[] args) throws Exception { Scanner sc = new Scanner(System.in); int h = sc.nextInt(); int w = sc.nextInt(); int x = 0; int y = 0; List<SK> list = new ArrayList<>(); int n = sc.nextInt(); for (int i = 0; i < n; i++) { String s = sc.next(); int k = sc.nextInt(); SK sk = new SK(s, k); list.add(sk); } for (int i = list.size() - 1; i >= 0; i--) { SK sk = list.get(i); String s = sk.s; int k = sk.k; if ("R".equals(s) && k == y) { x--; if (x < 0) x = w - 1; } else if ("C".equals(s) && k == x) { y--; if (y < 0) y = h - 1; } } System.out.println((x + y) % 2 == 0 ? "white" : "black"); } } class SK { final String s; final int k; SK(String s, int k) { this.s = s; this.k = k; } }