結果

問題 No.1367 文字列門松
ユーザー ygd.ygd.
提出日時 2021-01-29 21:31:26
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 77 ms / 2,000 ms
コード長 265 bytes
コンパイル時間 269 ms
コンパイル使用メモリ 87,212 KB
実行使用メモリ 76,656 KB
最終ジャッジ日時 2023-09-09 14:46:51
合計ジャッジ時間 3,417 ms
ジャッジサーバーID
(参考情報)
judge11 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 72 ms
71,264 KB
testcase_01 AC 69 ms
70,964 KB
testcase_02 AC 77 ms
76,364 KB
testcase_03 AC 75 ms
76,560 KB
testcase_04 AC 70 ms
71,360 KB
testcase_05 AC 77 ms
76,588 KB
testcase_06 AC 70 ms
71,116 KB
testcase_07 AC 76 ms
75,912 KB
testcase_08 AC 76 ms
75,824 KB
testcase_09 AC 74 ms
75,800 KB
testcase_10 AC 74 ms
75,676 KB
testcase_11 AC 76 ms
76,656 KB
testcase_12 AC 73 ms
75,936 KB
testcase_13 AC 70 ms
71,168 KB
testcase_14 AC 70 ms
70,972 KB
testcase_15 AC 77 ms
76,396 KB
testcase_16 AC 77 ms
76,564 KB
testcase_17 AC 76 ms
76,356 KB
testcase_18 AC 76 ms
76,412 KB
testcase_19 AC 76 ms
76,416 KB
testcase_20 AC 77 ms
76,316 KB
testcase_21 AC 77 ms
76,628 KB
testcase_22 AC 76 ms
76,560 KB
testcase_23 AC 77 ms
76,584 KB
testcase_24 AC 76 ms
76,364 KB
testcase_25 AC 75 ms
76,208 KB
testcase_26 AC 76 ms
76,320 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

A = "kadomatsu"; LA = len(A)
S = str(input())

if len(S) > len(A):
    print("No");exit()

for i in range(1<<LA):
    temp = ""
    for j in range(LA):
        if (i>>j)&1 == 1:
            temp += A[j]
    if S == temp:
        print("Yes");exit()
print("No")
    
0