結果

問題 No.1367 文字列門松
ユーザー rlangevinrlangevin
提出日時 2023-01-09 01:33:55
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 45 ms / 2,000 ms
コード長 223 bytes
コンパイル時間 211 ms
コンパイル使用メモリ 82,372 KB
実行使用メモリ 61,932 KB
最終ジャッジ日時 2024-05-09 14:39:28
合計ジャッジ時間 2,551 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,808 KB
testcase_01 AC 34 ms
52,156 KB
testcase_02 AC 43 ms
61,632 KB
testcase_03 AC 42 ms
60,860 KB
testcase_04 AC 45 ms
61,084 KB
testcase_05 AC 40 ms
60,576 KB
testcase_06 AC 35 ms
52,620 KB
testcase_07 AC 41 ms
61,044 KB
testcase_08 AC 42 ms
60,984 KB
testcase_09 AC 39 ms
60,500 KB
testcase_10 AC 38 ms
58,556 KB
testcase_11 AC 39 ms
61,184 KB
testcase_12 AC 39 ms
59,852 KB
testcase_13 AC 35 ms
52,388 KB
testcase_14 AC 34 ms
52,676 KB
testcase_15 AC 41 ms
61,396 KB
testcase_16 AC 41 ms
61,488 KB
testcase_17 AC 41 ms
61,932 KB
testcase_18 AC 41 ms
60,728 KB
testcase_19 AC 42 ms
61,028 KB
testcase_20 AC 40 ms
60,868 KB
testcase_21 AC 41 ms
60,580 KB
testcase_22 AC 41 ms
61,188 KB
testcase_23 AC 40 ms
61,508 KB
testcase_24 AC 41 ms
61,032 KB
testcase_25 AC 40 ms
60,052 KB
testcase_26 AC 42 ms
60,992 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

S = list(input())
K = list("kadomatsu")
N = len(K)
for i in range(1 << N):
    L = []
    for j in range(N):
        if (i >> j) & 1:
            L.append(K[j])
    if S == L:
        print("Yes")
        exit()
print("No")
0