結果

問題 No.1591 Two Digits
ユーザー titan23titan23
提出日時 2022-06-30 14:10:41
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 36 ms / 1,000 ms
コード長 138 bytes
コンパイル時間 281 ms
コンパイル使用メモリ 82,316 KB
実行使用メモリ 53,676 KB
最終ジャッジ日時 2024-11-24 09:35:00
合計ジャッジ時間 1,825 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,564 KB
testcase_01 AC 36 ms
52,816 KB
testcase_02 AC 34 ms
52,776 KB
testcase_03 AC 34 ms
52,492 KB
testcase_04 AC 32 ms
52,248 KB
testcase_05 AC 32 ms
53,072 KB
testcase_06 AC 34 ms
53,356 KB
testcase_07 AC 31 ms
52,352 KB
testcase_08 AC 30 ms
52,604 KB
testcase_09 AC 31 ms
51,684 KB
testcase_10 AC 32 ms
53,676 KB
testcase_11 AC 31 ms
53,012 KB
testcase_12 AC 30 ms
52,200 KB
testcase_13 AC 31 ms
52,204 KB
testcase_14 AC 32 ms
52,516 KB
testcase_15 AC 33 ms
51,812 KB
testcase_16 AC 32 ms
51,952 KB
testcase_17 AC 31 ms
51,760 KB
testcase_18 AC 31 ms
52,636 KB
testcase_19 AC 32 ms
51,828 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = lambda: sys.stdin.readline().rstrip()

#  -----------------------  #

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