結果

問題 No.1941 CHECKER×CHECKER(1)
ユーザー kkttkktt
提出日時 2022-11-06 16:48:38
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
RE  
実行時間 -
コード長 99 bytes
コンパイル時間 154 ms
コンパイル使用メモリ 10,632 KB
実行使用メモリ 7,956 KB
最終ジャッジ日時 2023-09-27 11:23:54
合計ジャッジ時間 1,464 ms
ジャッジサーバーID
(参考情報)
judge14 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 15 ms
7,920 KB
testcase_01 RE -
testcase_02 RE -
testcase_03 AC 17 ms
7,796 KB
testcase_04 RE -
testcase_05 RE -
testcase_06 RE -
testcase_07 WA -
testcase_08 WA -
testcase_09 RE -
testcase_10 RE -
testcase_11 WA -
testcase_12 RE -
testcase_13 WA -
testcase_14 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

a = input()
b= input()
c=input()
if a[0]==c[0] and b[0]!=a[0]:
    print('Yes')
else:
    print(No)
0