結果

問題 No.1591 Two Digits
ユーザー Ain48803949Ain48803949
提出日時 2021-07-09 22:09:34
言語 Python3
(3.11.2 + numpy 1.24.2 + scipy 1.10.1)
結果
AC  
実行時間 30 ms / 1,000 ms
コード長 734 bytes
コンパイル時間 60 ms
実行使用メモリ 9,516 KB
最終ジャッジ日時 2023-02-01 23:45:04
合計ジャッジ時間 1,935 ms
ジャッジサーバーID
(参考情報)
judge11 / judge14
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
9,364 KB
testcase_01 AC 30 ms
9,468 KB
testcase_02 AC 29 ms
9,280 KB
testcase_03 AC 29 ms
9,308 KB
testcase_04 AC 29 ms
9,356 KB
testcase_05 AC 29 ms
9,456 KB
testcase_06 AC 29 ms
9,352 KB
testcase_07 AC 29 ms
9,396 KB
testcase_08 AC 30 ms
9,352 KB
testcase_09 AC 29 ms
9,516 KB
testcase_10 AC 30 ms
9,280 KB
testcase_11 AC 29 ms
9,444 KB
testcase_12 AC 30 ms
9,348 KB
testcase_13 AC 30 ms
9,400 KB
testcase_14 AC 30 ms
9,472 KB
testcase_15 AC 30 ms
9,440 KB
testcase_16 AC 30 ms
9,360 KB
testcase_17 AC 30 ms
9,440 KB
testcase_18 AC 30 ms
9,404 KB
testcase_19 AC 30 ms
9,352 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import bisect,collections,copy,heapq,itertools,math,string,sys,queue,time,random
input = lambda: sys.stdin.readline().rstrip()
def I(): return input()
def IS(): return input().split()
def II(): return int(input())
def IIS(): return map(int,input().split())
def LIIS(): return list(map(int,input().split()))
def Base_n_to_10(X,n):
    out = 0
    for i in range(1,len(str(X))+1):
        out += int(X[-i])*(n**(i-1))
    return out#int out
def Base_10_to_n(X, n):
    if (X//n):
        return Base_10_to_n(X//n, n)+str(X%n)
    return str(X%n)
INF=10**18
MOD=10**9+7
sys.setrecursionlimit(10**8)
##############################################################################
n=II()
if 10<=n<=99:
    print("Yes")
else:
    print("No")
0