結果

問題 No.1592 Tenkei 90
ユーザー brthyyjpbrthyyjp
提出日時 2021-07-09 21:22:52
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 97 ms / 1,000 ms
コード長 154 bytes
コンパイル時間 402 ms
コンパイル使用メモリ 86,860 KB
実行使用メモリ 71,792 KB
最終ジャッジ日時 2023-09-14 07:26:35
合計ジャッジ時間 3,174 ms
ジャッジサーバーID
(参考情報)
judge11 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 92 ms
71,760 KB
testcase_01 AC 90 ms
71,456 KB
testcase_02 AC 91 ms
71,516 KB
testcase_03 AC 97 ms
71,672 KB
testcase_04 AC 92 ms
71,792 KB
testcase_05 AC 93 ms
71,668 KB
testcase_06 AC 92 ms
71,644 KB
testcase_07 AC 92 ms
71,792 KB
testcase_08 AC 93 ms
71,580 KB
testcase_09 AC 93 ms
71,476 KB
testcase_10 AC 96 ms
71,216 KB
testcase_11 AC 94 ms
71,448 KB
testcase_12 AC 93 ms
71,696 KB
testcase_13 AC 92 ms
71,372 KB
testcase_14 AC 94 ms
71,480 KB
testcase_15 AC 95 ms
71,672 KB
testcase_16 AC 92 ms
71,460 KB
testcase_17 AC 92 ms
71,368 KB
testcase_18 AC 93 ms
71,604 KB
testcase_19 AC 93 ms
71,512 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

s = str(input())
t = 'kyoprotenkei90'
from collections import Counter
ds = Counter(s)
dt = Counter(t)
if ds == dt:
    print('Yes')
else:
    print('No')
0