結果
問題 | No.2641 draw X |
ユーザー | NP |
提出日時 | 2024-02-23 16:30:46 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 535 bytes |
コンパイル時間 | 192 ms |
コンパイル使用メモリ | 82,444 KB |
実行使用メモリ | 105,436 KB |
最終ジャッジ日時 | 2024-09-29 05:11:19 |
合計ジャッジ時間 | 4,116 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | AC | 31 ms
52,800 KB |
testcase_10 | AC | 32 ms
53,488 KB |
testcase_11 | AC | 31 ms
52,204 KB |
testcase_12 | AC | 31 ms
53,016 KB |
testcase_13 | WA | - |
testcase_14 | AC | 32 ms
53,016 KB |
testcase_15 | AC | 92 ms
104,148 KB |
testcase_16 | WA | - |
testcase_17 | AC | 32 ms
53,948 KB |
testcase_18 | AC | 33 ms
51,940 KB |
testcase_19 | AC | 32 ms
52,520 KB |
testcase_20 | AC | 36 ms
57,732 KB |
testcase_21 | AC | 37 ms
63,292 KB |
testcase_22 | AC | 37 ms
57,836 KB |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | AC | 35 ms
55,572 KB |
testcase_26 | WA | - |
testcase_27 | AC | 35 ms
55,704 KB |
testcase_28 | AC | 42 ms
71,568 KB |
testcase_29 | WA | - |
testcase_30 | WA | - |
testcase_31 | AC | 55 ms
83,340 KB |
testcase_32 | WA | - |
testcase_33 | AC | 74 ms
101,076 KB |
testcase_34 | AC | 45 ms
75,904 KB |
testcase_35 | AC | 53 ms
84,004 KB |
testcase_36 | WA | - |
testcase_37 | AC | 83 ms
102,388 KB |
testcase_38 | AC | 80 ms
102,900 KB |
testcase_39 | WA | - |
testcase_40 | WA | - |
testcase_41 | WA | - |
testcase_42 | AC | 82 ms
103,740 KB |
testcase_43 | WA | - |
ソースコード
H, W = map(int, input().split()) S = [list(input()) for _ in range(H)] dx = [0, 1, 0, -1] dy = [1, 0, -1, 0] def is_valid(x, y): if x < 0 or y < 0 or x >= H or y >= W: return False return True def can_draw(x, y): for i in range(4): nx, ny = x + dx[i], y + dy[i] if is_valid(nx, ny) and S[nx][ny] == '#': return False return True for i in range(H): for j in range(W): if S[i][j] == '#' and not can_draw(i, j): print('No') exit(0) print('Yes')