結果

問題 No.1591 Two Digits
ユーザー HAGI_TAROHAGI_TARO
提出日時 2021-08-16 16:36:54
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 36 ms / 1,000 ms
コード長 66 bytes
コンパイル時間 181 ms
コンパイル使用メモリ 82,720 KB
実行使用メモリ 53,536 KB
最終ジャッジ日時 2024-04-17 19:45:42
合計ジャッジ時間 1,526 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
52,580 KB
testcase_01 AC 33 ms
51,672 KB
testcase_02 AC 34 ms
52,412 KB
testcase_03 AC 34 ms
52,904 KB
testcase_04 AC 34 ms
52,080 KB
testcase_05 AC 33 ms
52,336 KB
testcase_06 AC 35 ms
53,536 KB
testcase_07 AC 32 ms
51,836 KB
testcase_08 AC 31 ms
52,416 KB
testcase_09 AC 34 ms
52,008 KB
testcase_10 AC 31 ms
53,084 KB
testcase_11 AC 31 ms
52,752 KB
testcase_12 AC 35 ms
52,760 KB
testcase_13 AC 32 ms
53,524 KB
testcase_14 AC 36 ms
52,404 KB
testcase_15 AC 32 ms
51,628 KB
testcase_16 AC 33 ms
52,648 KB
testcase_17 AC 31 ms
51,968 KB
testcase_18 AC 33 ms
52,264 KB
testcase_19 AC 32 ms
51,828 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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