結果

問題 No.1592 Tenkei 90
ユーザー tcltktcltk
提出日時 2021-11-19 23:51:07
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 123 ms / 1,000 ms
コード長 681 bytes
コンパイル時間 379 ms
コンパイル使用メモリ 82,316 KB
実行使用メモリ 87,040 KB
最終ジャッジ日時 2024-06-10 11:39:14
合計ジャッジ時間 3,577 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 107 ms
86,672 KB
testcase_01 AC 113 ms
86,384 KB
testcase_02 AC 123 ms
86,820 KB
testcase_03 AC 115 ms
86,684 KB
testcase_04 AC 114 ms
86,700 KB
testcase_05 AC 116 ms
86,780 KB
testcase_06 AC 115 ms
86,772 KB
testcase_07 AC 118 ms
86,420 KB
testcase_08 AC 118 ms
86,924 KB
testcase_09 AC 118 ms
86,648 KB
testcase_10 AC 117 ms
86,412 KB
testcase_11 AC 114 ms
86,588 KB
testcase_12 AC 112 ms
86,716 KB
testcase_13 AC 111 ms
86,784 KB
testcase_14 AC 110 ms
86,472 KB
testcase_15 AC 111 ms
86,732 KB
testcase_16 AC 109 ms
86,964 KB
testcase_17 AC 110 ms
86,328 KB
testcase_18 AC 111 ms
87,040 KB
testcase_19 AC 118 ms
86,664 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/env python3
# from typing import *

import sys
import io
import math
import collections
import decimal
import itertools
import bisect
import heapq


def input():
    return sys.stdin.readline()[:-1]


# sys.setrecursionlimit(1000000)

# _INPUT = """# paste here...
# """
# sys.stdin = io.StringIO(_INPUT)

INF = 10**10

YES = 'Yes'
NO = 'No'

def solve(S):
    if len(S) != len('kyoprotenkei90'):
        return 'No'

    counter1 = collections.Counter(S)
    counter2 = collections.Counter(list('kyoprotenkei90'))
    for c, n in counter1.items():
        if c not in counter2 or counter2[c] != n:
            return 'No'
    return 'Yes'


S = input()
print(solve(S))
0