結果

問題 No.1367 文字列門松
ユーザー flippergoflippergo
提出日時 2024-10-03 19:58:48
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 46 ms / 2,000 ms
コード長 220 bytes
コンパイル時間 471 ms
コンパイル使用メモリ 82,256 KB
実行使用メモリ 62,152 KB
最終ジャッジ日時 2024-10-03 19:58:52
合計ジャッジ時間 2,594 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
61,108 KB
testcase_01 AC 44 ms
60,432 KB
testcase_02 AC 45 ms
60,500 KB
testcase_03 AC 44 ms
60,868 KB
testcase_04 AC 43 ms
60,320 KB
testcase_05 AC 45 ms
60,888 KB
testcase_06 AC 45 ms
62,152 KB
testcase_07 AC 44 ms
60,356 KB
testcase_08 AC 45 ms
60,932 KB
testcase_09 AC 45 ms
60,576 KB
testcase_10 AC 44 ms
61,152 KB
testcase_11 AC 44 ms
60,236 KB
testcase_12 AC 45 ms
61,068 KB
testcase_13 AC 44 ms
60,316 KB
testcase_14 AC 44 ms
62,048 KB
testcase_15 AC 44 ms
60,912 KB
testcase_16 AC 43 ms
61,284 KB
testcase_17 AC 44 ms
60,648 KB
testcase_18 AC 45 ms
60,892 KB
testcase_19 AC 44 ms
61,080 KB
testcase_20 AC 44 ms
61,340 KB
testcase_21 AC 44 ms
60,428 KB
testcase_22 AC 45 ms
60,428 KB
testcase_23 AC 46 ms
61,064 KB
testcase_24 AC 45 ms
60,372 KB
testcase_25 AC 45 ms
60,584 KB
testcase_26 AC 45 ms
60,428 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

A = set()
for i in range(2**9):
    S = list("kadomatsu")
    for k in range(8,-1,-1):
        if (i>>k)&1:
            S.pop(k)
    A.add("".join(S))
s = input().strip()
if s in A:
    print("Yes")
else:
    print("No")
0