結果

問題 No.819 Enjapma game
ユーザー convexineqconvexineq
提出日時 2021-03-23 06:01:01
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 43 ms / 2,000 ms
コード長 240 bytes
コンパイル時間 361 ms
コンパイル使用メモリ 82,456 KB
実行使用メモリ 61,880 KB
最終ジャッジ日時 2024-11-24 21:51:02
合計ジャッジ時間 2,234 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
52,832 KB
testcase_01 AC 34 ms
51,944 KB
testcase_02 AC 33 ms
52,488 KB
testcase_03 AC 32 ms
53,448 KB
testcase_04 AC 32 ms
52,176 KB
testcase_05 AC 33 ms
53,664 KB
testcase_06 AC 33 ms
53,316 KB
testcase_07 AC 33 ms
52,332 KB
testcase_08 AC 32 ms
53,380 KB
testcase_09 AC 32 ms
52,696 KB
testcase_10 AC 34 ms
51,876 KB
testcase_11 AC 42 ms
60,612 KB
testcase_12 AC 43 ms
60,352 KB
testcase_13 AC 39 ms
60,080 KB
testcase_14 AC 38 ms
60,024 KB
testcase_15 AC 39 ms
59,840 KB
testcase_16 AC 39 ms
60,568 KB
testcase_17 AC 41 ms
60,260 KB
testcase_18 AC 40 ms
60,644 KB
testcase_19 AC 40 ms
60,976 KB
testcase_20 AC 40 ms
60,064 KB
testcase_21 AC 40 ms
61,880 KB
testcase_22 AC 40 ms
60,980 KB
testcase_23 AC 41 ms
60,396 KB
testcase_24 AC 41 ms
60,424 KB
testcase_25 AC 41 ms
61,092 KB
testcase_26 AC 39 ms
61,848 KB
testcase_27 AC 40 ms
60,308 KB
testcase_28 AC 39 ms
59,868 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

h,w = map(int,input().split())
b = [input() for _ in range(h)]
r = [0,0]
cnt = 0
for i in range(h):
    for j in range(w):
        if b[i][j] == "o":
            cnt += 1
            r[(i+j)%2] += 1
print("YES" if (cnt+r[0])%3==0 else "NO")
0