結果
| 問題 |
No.3125 Make It Symmetry
|
| コンテスト | |
| ユーザー |
三価スニウム
|
| 提出日時 | 2025-06-25 01:19:03 |
| 言語 | PyPy3 (7.3.15) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 190 bytes |
| コンパイル時間 | 501 ms |
| コンパイル使用メモリ | 82,652 KB |
| 実行使用メモリ | 57,332 KB |
| 最終ジャッジ日時 | 2025-06-25 01:19:09 |
| 合計ジャッジ時間 | 4,226 ms |
|
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 WA * 1 |
| other | AC * 29 WA * 7 |
ソースコード
N = int(input())
A = [input() for _ in range(N)]
if N % 2 == 0:
s = sum(a.count('#') for a in A)
if s == 1:
print('No')
else:
print('Yes')
else:
print('Yes')
三価スニウム