結果

問題 No.1592 Tenkei 90
ユーザー shotoyooshotoyoo
提出日時 2021-07-09 21:21:29
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 94 ms / 1,000 ms
コード長 372 bytes
コンパイル時間 275 ms
コンパイル使用メモリ 87,084 KB
実行使用メモリ 71,940 KB
最終ジャッジ日時 2023-09-14 07:17:25
合計ジャッジ時間 3,105 ms
ジャッジサーバーID
(参考情報)
judge12 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 94 ms
71,548 KB
testcase_01 AC 90 ms
71,552 KB
testcase_02 AC 91 ms
71,620 KB
testcase_03 AC 91 ms
71,780 KB
testcase_04 AC 92 ms
71,744 KB
testcase_05 AC 92 ms
71,940 KB
testcase_06 AC 93 ms
71,856 KB
testcase_07 AC 90 ms
71,632 KB
testcase_08 AC 92 ms
71,592 KB
testcase_09 AC 91 ms
71,808 KB
testcase_10 AC 88 ms
71,436 KB
testcase_11 AC 92 ms
71,856 KB
testcase_12 AC 91 ms
71,632 KB
testcase_13 AC 89 ms
71,588 KB
testcase_14 AC 88 ms
71,624 KB
testcase_15 AC 87 ms
71,552 KB
testcase_16 AC 90 ms
71,632 KB
testcase_17 AC 89 ms
71,448 KB
testcase_18 AC 88 ms
71,620 KB
testcase_19 AC 90 ms
71,812 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = lambda : sys.stdin.readline().rstrip()

sys.setrecursionlimit(2*10**5+10)
write = lambda x: sys.stdout.write(x+"\n")
debug = lambda x: sys.stderr.write(x+"\n")
writef = lambda x: print("{:.12f}".format(x))

s = "kyoprotenkei90"
v = input()
from collections import Counter
c1 = Counter(s)
c2 = Counter(v)
if c1==c2:
    print("Yes")
else:
    print("No")
0