結果

問題 No.819 Enjapma game
ユーザー convexineqconvexineq
提出日時 2021-03-23 05:53:04
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 341 bytes
コンパイル時間 340 ms
コンパイル使用メモリ 82,364 KB
実行使用メモリ 61,664 KB
最終ジャッジ日時 2024-11-24 21:25:12
合計ジャッジ時間 3,059 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,540 KB
testcase_01 AC 37 ms
53,264 KB
testcase_02 AC 38 ms
52,588 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 37 ms
52,080 KB
testcase_06 AC 37 ms
53,564 KB
testcase_07 AC 38 ms
52,664 KB
testcase_08 WA -
testcase_09 AC 37 ms
53,088 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 46 ms
60,784 KB
testcase_14 AC 44 ms
59,656 KB
testcase_15 WA -
testcase_16 AC 45 ms
60,176 KB
testcase_17 WA -
testcase_18 AC 46 ms
60,800 KB
testcase_19 AC 45 ms
61,664 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 47 ms
60,264 KB
testcase_23 AC 46 ms
60,692 KB
testcase_24 AC 45 ms
60,144 KB
testcase_25 WA -
testcase_26 AC 44 ms
60,064 KB
testcase_27 AC 44 ms
59,480 KB
testcase_28 AC 45 ms
60,216 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
if cnt==1:
    print("NO")
elif cnt%2:
    print("YES" if r[0]==0 or r[1]==0 else "NO")
else:
    print("NO" if r[0]==0 or r[1]==0 else "YES")
0