結果
問題 | No.351 市松スライドパズル |
ユーザー | htensai |
提出日時 | 2019-11-21 17:01:41 |
言語 | Java (openjdk 23) |
結果 |
AC
|
実行時間 | 1,663 ms / 2,000 ms |
コード長 | 757 bytes |
コンパイル時間 | 1,940 ms |
コンパイル使用メモリ | 75,112 KB |
実行使用メモリ | 64,352 KB |
最終ジャッジ日時 | 2024-10-10 05:43:42 |
合計ジャッジ時間 | 22,155 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 4 |
other | AC * 17 |
ソースコード
import java.util.*; public class Main { public static void main (String[] args) { Scanner sc = new Scanner(System.in); int h = sc.nextInt(); int w = sc.nextInt(); int n = sc.nextInt(); char[] types = new char[n]; int[] idxes = new int[n]; for (int i = 0; i < n; i++) { types[i] = sc.next().charAt(0); idxes[i] = sc.nextInt(); } int r = 0; int c = 0; for (int i = n - 1; i >= 0; i--) { if (types[i] == 'R') { if (idxes[i] == r) { c = (c + w - 1) % w; } } else { if (idxes[i] == c) { r = (r + h - 1) % h; } } } if (c % 2 == 0 ^ r % 2 == 0) { System.out.println("black"); } else { System.out.println("white"); } } }