結果

問題 No.3125 Make It Symmetry
ユーザー Kude
提出日時 2025-04-25 21:23:14
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 46 ms / 2,000 ms
コード長 131 bytes
コンパイル時間 328 ms
コンパイル使用メモリ 82,912 KB
実行使用メモリ 56,676 KB
最終ジャッジ日時 2025-04-25 21:23:24
合計ジャッジ時間 3,175 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 36
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
cnt = 0
for _ in range(n):
    s = input()
    cnt += s.count('.')
print('Yes' if n % 2 or cnt % 2 == 0 else 'No')
0