結果

問題 No.1367 文字列門松
ユーザー brthyyjpbrthyyjp
提出日時 2021-02-01 18:35:14
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 45 ms / 2,000 ms
コード長 255 bytes
コンパイル時間 201 ms
コンパイル使用メモリ 81,840 KB
実行使用メモリ 61,888 KB
最終ジャッジ日時 2024-06-29 22:55:49
合計ジャッジ時間 1,945 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
52,956 KB
testcase_01 AC 35 ms
51,756 KB
testcase_02 AC 44 ms
60,644 KB
testcase_03 AC 42 ms
61,888 KB
testcase_04 AC 40 ms
60,464 KB
testcase_05 AC 41 ms
61,500 KB
testcase_06 AC 33 ms
52,632 KB
testcase_07 AC 38 ms
59,368 KB
testcase_08 AC 37 ms
59,276 KB
testcase_09 AC 37 ms
59,236 KB
testcase_10 AC 37 ms
59,156 KB
testcase_11 AC 38 ms
60,128 KB
testcase_12 AC 35 ms
59,320 KB
testcase_13 AC 32 ms
52,448 KB
testcase_14 AC 32 ms
52,908 KB
testcase_15 AC 39 ms
61,280 KB
testcase_16 AC 39 ms
60,120 KB
testcase_17 AC 38 ms
61,500 KB
testcase_18 AC 39 ms
61,224 KB
testcase_19 AC 39 ms
60,104 KB
testcase_20 AC 38 ms
60,176 KB
testcase_21 AC 44 ms
61,280 KB
testcase_22 AC 43 ms
61,344 KB
testcase_23 AC 41 ms
60,468 KB
testcase_24 AC 44 ms
61,408 KB
testcase_25 AC 44 ms
59,976 KB
testcase_26 AC 45 ms
60,844 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

s = str(input())
t = 'kadomatsu'
n = len(t)
for i in range(2**n):
    temp = []
    for j in range(n):
        if (i>>j)&1:
            temp.append(t[j])
    temp = ''.join(temp)
    if temp == s:
        print('Yes')
        exit()
else:
    print('No')
0