結果

問題 No.1592 Tenkei 90
ユーザー Ain48803949Ain48803949
提出日時 2021-07-09 21:43:17
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 42 ms / 1,000 ms
コード長 765 bytes
コンパイル時間 108 ms
コンパイル使用メモリ 10,880 KB
実行使用メモリ 10,316 KB
最終ジャッジ日時 2023-09-14 08:16:22
合計ジャッジ時間 2,405 ms
ジャッジサーバーID
(参考情報)
judge11 / judge15
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
10,120 KB
testcase_01 AC 41 ms
10,204 KB
testcase_02 AC 38 ms
10,180 KB
testcase_03 AC 41 ms
10,144 KB
testcase_04 AC 41 ms
10,080 KB
testcase_05 AC 42 ms
10,152 KB
testcase_06 AC 41 ms
10,316 KB
testcase_07 AC 39 ms
10,308 KB
testcase_08 AC 39 ms
10,268 KB
testcase_09 AC 41 ms
10,076 KB
testcase_10 AC 42 ms
10,076 KB
testcase_11 AC 42 ms
10,236 KB
testcase_12 AC 42 ms
10,204 KB
testcase_13 AC 41 ms
10,120 KB
testcase_14 AC 41 ms
10,156 KB
testcase_15 AC 40 ms
10,248 KB
testcase_16 AC 41 ms
10,152 KB
testcase_17 AC 41 ms
10,184 KB
testcase_18 AC 40 ms
10,128 KB
testcase_19 AC 40 ms
10,136 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)
##############################################################################
s=list(I())
if sorted(s)==sorted("kyoprotenkei90"):
    print("Yes")
else:
    print("No")
0