結果

問題 No.2322 MMA文字列
ユーザー vwxyz
提出日時 2023-06-09 06:51:43
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
WA  
実行時間 -
コード長 120 bytes
コンパイル時間 292 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 10,624 KB
最終ジャッジ日時 2024-12-31 13:41:52
合計ジャッジ時間 2,020 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2 WA * 1
other AC * 14 WA * 5
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
readline=sys.stdin.readline

S=readline().rstrip()
if S[0]==S[1]:
    ans="Yes"
else:
    ans="No"
print(ans)
0