結果

問題 No.1591 Two Digits
ユーザー Ain48803949Ain48803949
提出日時 2021-07-09 21:41:59
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 733 bytes
コンパイル時間 100 ms
コンパイル使用メモリ 10,952 KB
実行使用メモリ 10,304 KB
最終ジャッジ日時 2023-09-14 08:13:46
合計ジャッジ時間 1,983 ms
ジャッジサーバーID
(参考情報)
judge13 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
10,248 KB
testcase_01 AC 33 ms
10,212 KB
testcase_02 AC 33 ms
10,196 KB
testcase_03 AC 34 ms
10,116 KB
testcase_04 AC 34 ms
10,244 KB
testcase_05 AC 33 ms
10,228 KB
testcase_06 AC 34 ms
10,300 KB
testcase_07 AC 34 ms
10,136 KB
testcase_08 AC 34 ms
10,096 KB
testcase_09 AC 33 ms
10,128 KB
testcase_10 AC 34 ms
10,172 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 AC 33 ms
10,128 KB
testcase_18 WA -
testcase_19 AC 33 ms
10,172 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=I()
if len(n)>=2:
    print("Yes")
else:
    print("No")
0