結果

問題 No.1367 文字列門松
ユーザー O2MTO2MT
提出日時 2021-02-06 18:02:03
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 989 bytes
コンパイル時間 218 ms
コンパイル使用メモリ 82,232 KB
実行使用メモリ 53,968 KB
最終ジャッジ日時 2024-07-03 05:30:48
合計ジャッジ時間 2,269 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
51,684 KB
testcase_01 AC 32 ms
52,232 KB
testcase_02 AC 33 ms
53,248 KB
testcase_03 AC 33 ms
53,320 KB
testcase_04 AC 34 ms
52,564 KB
testcase_05 AC 34 ms
52,840 KB
testcase_06 AC 34 ms
52,696 KB
testcase_07 AC 34 ms
53,136 KB
testcase_08 AC 37 ms
51,740 KB
testcase_09 AC 36 ms
52,772 KB
testcase_10 WA -
testcase_11 AC 36 ms
52,440 KB
testcase_12 AC 36 ms
52,192 KB
testcase_13 AC 34 ms
52,836 KB
testcase_14 AC 33 ms
53,248 KB
testcase_15 AC 34 ms
52,076 KB
testcase_16 AC 34 ms
53,268 KB
testcase_17 AC 34 ms
52,104 KB
testcase_18 AC 34 ms
53,860 KB
testcase_19 AC 35 ms
53,968 KB
testcase_20 AC 33 ms
52,104 KB
testcase_21 AC 36 ms
52,016 KB
testcase_22 AC 34 ms
52,196 KB
testcase_23 AC 34 ms
52,416 KB
testcase_24 AC 34 ms
52,152 KB
testcase_25 AC 33 ms
52,812 KB
testcase_26 AC 33 ms
51,620 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

S = str(input())
M = {'k':0,'a':[],'d':0,'o':0,'m':0,'t':0,'s':0,'u':0}
J = {'k':1,'a':[2,6],'d':3,'o':4,'m':5,'t':7,'s':8,'u':9}
KADOMATSU = "kadomatsu"
num = 0
l = ['']*11
ans = "Yes"
for s in S:
    num += 1
    if s in KADOMATSU:
        if s == 'a':
            len_a = len(M[s])
            if len_a < 2:
                M[s].append(num)
                l[num] = s
            else:
                ans = "No"
                break
        else:
            if M[s] == 0:
                M[s] = num
                l[num] = s
            else:
                ans = "No"
                break
    else:
        ans = "No"
        break
if ans == "Yes":
    S = ''.join(l)
    now = 0
    count_a = 0
    for s in S:
        if s == 'a':
            if J[s][count_a] < now:
                ans = "No"
            now = J[s][count_a]
            count_a += 1
        else:
            if J[s] < now:
                ans = "No"
            now = J[s]
    print(ans)
else:
    print(ans)
0