結果

問題 No.1592 Tenkei 90
ユーザー nehan_der_thalnehan_der_thal
提出日時 2021-07-09 21:45:57
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 43 ms / 1,000 ms
コード長 321 bytes
コンパイル時間 761 ms
コンパイル使用メモリ 82,248 KB
実行使用メモリ 55,860 KB
最終ジャッジ日時 2024-07-01 15:47:39
合計ジャッジ時間 1,900 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
54,868 KB
testcase_01 AC 41 ms
53,420 KB
testcase_02 AC 42 ms
54,188 KB
testcase_03 AC 41 ms
53,812 KB
testcase_04 AC 41 ms
53,940 KB
testcase_05 AC 41 ms
55,280 KB
testcase_06 AC 42 ms
54,432 KB
testcase_07 AC 41 ms
55,312 KB
testcase_08 AC 42 ms
55,544 KB
testcase_09 AC 42 ms
55,860 KB
testcase_10 AC 42 ms
54,852 KB
testcase_11 AC 42 ms
53,856 KB
testcase_12 AC 42 ms
54,676 KB
testcase_13 AC 42 ms
53,972 KB
testcase_14 AC 42 ms
54,792 KB
testcase_15 AC 42 ms
54,720 KB
testcase_16 AC 43 ms
53,996 KB
testcase_17 AC 42 ms
54,736 KB
testcase_18 AC 42 ms
55,588 KB
testcase_19 AC 42 ms
54,224 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict
D = defaultdict(int)
for c in "90kyoprotenkei":
    D[c] += 1
D2 = defaultdict(int)
for c in input().strip():
    D2[c] += 1

if len(D) != len(D2):
    print("No")
else:
    for c in D:
        if D[c] != D2[c]:
            print("No")
            break
    else:
        print("Yes")
0