結果
問題 | No.819 Enjapma game |
ユーザー |
![]() |
提出日時 | 2022-08-10 20:39:37 |
言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
結果 |
AC
|
実行時間 | 37 ms / 2,000 ms |
コード長 | 333 bytes |
コンパイル時間 | 294 ms |
コンパイル使用メモリ | 12,544 KB |
実行使用メモリ | 10,752 KB |
最終ジャッジ日時 | 2024-09-21 06:57:44 |
合計ジャッジ時間 | 2,340 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 26 |
ソースコード
import sys readline=sys.stdin.readline H,W=map(int,readline().split()) g=0 c=0 for h in range(H): S=readline().rstrip() for w in range(W): if S[w]=="o": c+=1 if (h+w)%2==(H-1)%2: g+=1 else: g+=2 if g%3: ans="NO" else: ans="YES" print(ans)