結果
| 問題 | No.1592 Tenkei 90 | 
| コンテスト | |
| ユーザー |  brthyyjp | 
| 提出日時 | 2021-07-09 21:22:52 | 
| 言語 | PyPy3 (7.3.15) | 
| 結果 | 
                                AC
                                 
                             | 
| 実行時間 | 48 ms / 1,000 ms | 
| コード長 | 154 bytes | 
| コンパイル時間 | 192 ms | 
| コンパイル使用メモリ | 82,108 KB | 
| 実行使用メモリ | 53,632 KB | 
| 最終ジャッジ日時 | 2024-07-01 14:53:05 | 
| 合計ジャッジ時間 | 1,785 ms | 
| ジャッジサーバーID (参考情報) | judge4 / judge5 | 
(要ログイン)
| ファイルパターン | 結果 | 
|---|---|
| sample | AC * 3 | 
| other | AC * 17 | 
ソースコード
s = str(input())
t = 'kyoprotenkei90'
from collections import Counter
ds = Counter(s)
dt = Counter(t)
if ds == dt:
    print('Yes')
else:
    print('No')
            
            
            
        