結果

問題 No.1591 Two Digits
ユーザー とりゐ
提出日時 2021-07-09 21:20:26
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 46 ms / 1,000 ms
コード長 514 bytes
コンパイル時間 155 ms
コンパイル使用メモリ 82,404 KB
実行使用メモリ 54,016 KB
最終ジャッジ日時 2024-07-01 14:32:48
合計ジャッジ時間 1,728 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 17
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
import math
from collections import deque,Counter
#sys.setrecursionlimit(10**7)
int1=lambda x: int(x)-1

mi=lambda :map(int,input().split())
li=lambda :list(mi())
mi1=lambda :map(int1,input().split())
li1=lambda :list(mi1())
mis=lambda :map(str,input().split())
lis=lambda :list(mis())

from collections import defaultdict
"""
d=defaultdict(int) #初期値 0
d=defaultdict(lambda:1) #初期値 1
"""

mod=10**9+7
Mod=998244353
INF=10**18
ans=0

n=input()
if len(n)==2:
  print('Yes')
else:
  print('No')
0