結果
問題 | No.226 0-1パズル |
ユーザー | ぴろず |
提出日時 | 2015-06-12 22:46:56 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 154 ms / 5,000 ms |
コード長 | 1,397 bytes |
コンパイル時間 | 2,928 ms |
コンパイル使用メモリ | 77,400 KB |
実行使用メモリ | 41,632 KB |
最終ジャッジ日時 | 2024-07-26 14:23:06 |
合計ジャッジ時間 | 6,284 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 114 ms
41,076 KB |
testcase_01 | AC | 123 ms
41,152 KB |
testcase_02 | AC | 118 ms
40,908 KB |
testcase_03 | AC | 106 ms
41,112 KB |
testcase_04 | AC | 124 ms
41,136 KB |
testcase_05 | AC | 117 ms
41,072 KB |
testcase_06 | AC | 115 ms
41,068 KB |
testcase_07 | AC | 120 ms
40,932 KB |
testcase_08 | AC | 109 ms
41,116 KB |
testcase_09 | AC | 114 ms
40,980 KB |
testcase_10 | AC | 117 ms
40,980 KB |
testcase_11 | AC | 103 ms
41,428 KB |
testcase_12 | AC | 116 ms
41,080 KB |
testcase_13 | AC | 113 ms
41,256 KB |
testcase_14 | AC | 112 ms
40,940 KB |
testcase_15 | AC | 114 ms
41,000 KB |
testcase_16 | AC | 115 ms
40,960 KB |
testcase_17 | AC | 147 ms
41,632 KB |
testcase_18 | AC | 145 ms
41,040 KB |
testcase_19 | AC | 146 ms
41,548 KB |
testcase_20 | AC | 154 ms
41,132 KB |
testcase_21 | AC | 141 ms
41,504 KB |
ソースコード
package no226; import java.util.Arrays; import java.util.Scanner; public class Main { public static long MOD = 1000000007; public static void main(String[] args) { Scanner sc = new Scanner(System.in); int h = sc.nextInt(); int w = sc.nextInt(); char[][] m = new char[h][]; for(int i=0;i<h;i++) { m[i] = sc.next().toCharArray(); } long ans = count1(m) - count2(m); char[][] mt = new char[w][h]; for(int i=0;i<h;i++) { for(int j=0;j<w;j++) { mt[j][i] = m[i][j]; } } ans += count1(mt); System.out.println((ans % MOD + MOD)% MOD); } public static long count1(char[][] m) { int h = m.length; int w = m[0].length; int[] check = new int[w]; Arrays.fill(check, 2); for(int i=0;i<h;i++) { for(int j=0;j<w;j++) { if (m[i][j] != '?') { int num = (m[i][j] - '0' + i) % 2; if (check[j] != 2 && check[j] != num) { return 0; } check[j] = num; } } } long ans = 1; for(int i=0;i<w;i++) { if (check[i] == 2) { ans = (ans * 2) % MOD; } } return ans; } public static long count2(char[][] m) { int h = m.length; int w = m[0].length; int type = 2; for(int i=0;i<h;i++) { for(int j=0;j<w;j++) { if (m[i][j] != '?') { int num = (m[i][j] - '0' + i + j) % 2; if (type != 2 && num != type) { return 0; } type = num; } } } return type == 2 ? 2 : 1; } }