結果

問題 No.2322 MMA文字列
ユーザー zekito_Bakazekito_Baka
提出日時 2023-05-28 13:37:42
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,351 bytes
コンパイル時間 339 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 55,552 KB
最終ジャッジ日時 2024-06-08 03:51:33
合計ジャッジ時間 2,342 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 49 ms
55,296 KB
testcase_01 AC 48 ms
55,296 KB
testcase_02 WA -
testcase_03 AC 48 ms
54,784 KB
testcase_04 AC 47 ms
54,784 KB
testcase_05 AC 48 ms
55,552 KB
testcase_06 AC 50 ms
55,040 KB
testcase_07 AC 49 ms
55,168 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 AC 49 ms
54,784 KB
testcase_12 AC 50 ms
55,552 KB
testcase_13 AC 49 ms
55,552 KB
testcase_14 AC 49 ms
54,912 KB
testcase_15 AC 49 ms
55,168 KB
testcase_16 WA -
testcase_17 AC 49 ms
54,912 KB
testcase_18 AC 49 ms
54,784 KB
testcase_19 AC 49 ms
54,784 KB
testcase_20 AC 49 ms
54,528 KB
testcase_21 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

from sys import stdin

input = stdin.readline
from functools import lru_cache

@lru_cache(maxsize=1000)
def next():
    x = input().rstrip()
    return(x)
def nextint():
    x = int(input())
    return(x)
def nextfloat():
    x = float(input())
    return(x)
def nextlist():
    x = list(input().rstrip().split()) 
    return(x)
def nextintlist():
    x = list(map(int, input().rstrip().split())) 
    return(x)
def nextfloatlist():
    x = list(map(float, input().rstrip().split())) 
    return(x)  
def nextlist2():
  n = int(input())  # nは入力回数
  x = [input().rstrip() for _ in range(n)]
  return(x)
def nextintlist2():
  n = int(input())  # nは入力回数
  x = [int(input()) for _ in range(n)]
  return(x)
def nextfloatlist2():
  n = int(input())  # nは入力回数
  x = [float(input()) for _ in range(n)]
  return(x)
def nextdoublelist():
    n = int(input())  # nは入力回数
    x = [list(input().rstrip().split()) for _ in range(n)]
    return(x)
def nextdoubleintlist():
    n = int(input())  # nは入力回数
    x = [list(map(int, input().rstrip().split())) for _ in range(n)]
    return(x)
def nextdoublefloatlist():
    n = int(input())  # nは入力回数
    x = [list(map(float, input().rstrip().split())) for _ in range(n)]
    return(x)

s = list(input())
if s[1] == s[0]:
    print("Yes")
else:
    print("No")


0