結果

問題 No.2373 wa, wo, n
ユーザー KowerKoint2010
提出日時 2023-06-29 07:52:08
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
WA  
実行時間 -
コード長 81 bytes
コンパイル時間 177 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 11,264 KB
最終ジャッジ日時 2024-07-05 23:50:46
合計ジャッジ時間 2,714 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 1 WA * 3
other AC * 20 WA * 19
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
if input().count('?') * 2 >= n:
	print('Yes')
else:
	print('No')
0