結果
問題 | No.226 0-1パズル |
ユーザー | hotcoffee |
提出日時 | 2024-03-14 08:51:00 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
AC
|
実行時間 | 31 ms / 5,000 ms |
コード長 | 1,204 bytes |
コンパイル時間 | 105 ms |
コンパイル使用メモリ | 12,928 KB |
実行使用メモリ | 11,008 KB |
最終ジャッジ日時 | 2024-09-29 23:39:22 |
合計ジャッジ時間 | 1,481 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 30 ms
10,880 KB |
testcase_01 | AC | 30 ms
11,008 KB |
testcase_02 | AC | 31 ms
10,880 KB |
testcase_03 | AC | 31 ms
10,880 KB |
testcase_04 | AC | 30 ms
10,880 KB |
testcase_05 | AC | 30 ms
10,880 KB |
testcase_06 | AC | 30 ms
10,880 KB |
testcase_07 | AC | 31 ms
10,880 KB |
testcase_08 | AC | 30 ms
10,880 KB |
testcase_09 | AC | 30 ms
11,008 KB |
testcase_10 | AC | 27 ms
10,880 KB |
testcase_11 | AC | 25 ms
10,880 KB |
testcase_12 | AC | 25 ms
10,880 KB |
testcase_13 | AC | 25 ms
10,880 KB |
testcase_14 | AC | 28 ms
11,008 KB |
testcase_15 | AC | 24 ms
10,880 KB |
testcase_16 | AC | 25 ms
10,880 KB |
testcase_17 | AC | 26 ms
10,880 KB |
testcase_18 | AC | 27 ms
10,880 KB |
testcase_19 | AC | 27 ms
10,880 KB |
testcase_20 | AC | 27 ms
10,880 KB |
testcase_21 | AC | 27 ms
10,880 KB |
ソースコード
H, W = map(int, input().split()) table = {} for i in range(H): for j, v in enumerate(list(input())): if v != '?': if i not in table: table[i] = {} table[i][j] = int(v) exp1= H exp2= W chk = -1 v_chk = {} for i, row in table.items(): h_chk = -1 for j, v in row.items(): if chk == -1: chk = (i + j + v) % 2 if exp1 != -1: if h_chk == -1: h_chk = (j + v) % 2 exp1 -= 1 else: if h_chk != (j + v) % 2: exp1 = -1 if exp2 != -1: if j not in v_chk: v_chk[j] = (i + v) % 2 exp2 -=1 else: if v_chk[j] != (i + v) % 2: exp2 = -1 if exp1 == -1 and exp2 == -2: break MOD = 1000000007 ans = 0 if exp1 != -1: ans += pow(2, exp1, MOD) if exp2 != -1: if exp1 == -1: dup = 0 elif exp2 == W: dup = 2 else: dup = 1 for j, v in v_chk.items(): if chk != (j + v) % 2: dup = 0 break ans += pow(2, exp2, MOD) - dup ans %= MOD print(ans)