結果

問題 No.2322 MMA文字列
ユーザー qibqib
提出日時 2023-05-29 22:54:49
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 74 ms / 2,000 ms
コード長 81 bytes
コンパイル時間 305 ms
コンパイル使用メモリ 86,684 KB
実行使用メモリ 71,236 KB
最終ジャッジ日時 2023-08-28 00:01:32
合計ジャッジ時間 3,113 ms
ジャッジサーバーID
(参考情報)
judge12 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 70 ms
70,716 KB
testcase_01 AC 68 ms
70,968 KB
testcase_02 AC 69 ms
70,924 KB
testcase_03 AC 70 ms
70,880 KB
testcase_04 AC 74 ms
71,152 KB
testcase_05 AC 69 ms
71,160 KB
testcase_06 AC 69 ms
71,148 KB
testcase_07 AC 71 ms
71,144 KB
testcase_08 AC 69 ms
70,920 KB
testcase_09 AC 70 ms
70,716 KB
testcase_10 AC 69 ms
71,096 KB
testcase_11 AC 70 ms
70,924 KB
testcase_12 AC 69 ms
70,924 KB
testcase_13 AC 72 ms
71,236 KB
testcase_14 AC 70 ms
70,992 KB
testcase_15 AC 69 ms
71,144 KB
testcase_16 AC 71 ms
71,116 KB
testcase_17 AC 70 ms
71,080 KB
testcase_18 AC 70 ms
70,968 KB
testcase_19 AC 69 ms
70,720 KB
testcase_20 AC 67 ms
71,144 KB
testcase_21 AC 69 ms
71,152 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

s = input()

if s[0] == s[1] and s[1] != s[2]:
  print("Yes")
else:
  print("No")
0