結果

問題 No.832 麻雀修行中
ユーザー 👑 rin204rin204
提出日時 2022-03-25 04:47:25
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 53 ms / 2,000 ms
コード長 1,243 bytes
コンパイル時間 264 ms
コンパイル使用メモリ 82,128 KB
実行使用メモリ 67,176 KB
最終ジャッジ日時 2024-10-13 12:11:22
合計ジャッジ時間 3,168 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
62,248 KB
testcase_01 AC 48 ms
62,876 KB
testcase_02 AC 45 ms
61,936 KB
testcase_03 AC 51 ms
64,756 KB
testcase_04 AC 51 ms
64,520 KB
testcase_05 AC 49 ms
63,072 KB
testcase_06 AC 52 ms
63,432 KB
testcase_07 AC 49 ms
64,140 KB
testcase_08 AC 51 ms
64,708 KB
testcase_09 AC 48 ms
62,816 KB
testcase_10 AC 48 ms
63,588 KB
testcase_11 AC 48 ms
62,644 KB
testcase_12 AC 49 ms
64,588 KB
testcase_13 AC 44 ms
61,772 KB
testcase_14 AC 53 ms
67,176 KB
testcase_15 AC 53 ms
66,344 KB
testcase_16 AC 46 ms
60,964 KB
testcase_17 AC 43 ms
61,904 KB
testcase_18 AC 48 ms
62,440 KB
testcase_19 AC 48 ms
64,632 KB
testcase_20 AC 46 ms
64,132 KB
testcase_21 AC 51 ms
63,824 KB
testcase_22 AC 47 ms
62,752 KB
testcase_23 AC 50 ms
62,848 KB
testcase_24 AC 49 ms
63,360 KB
testcase_25 AC 46 ms
63,252 KB
testcase_26 AC 47 ms
62,536 KB
testcase_27 AC 47 ms
60,960 KB
testcase_28 AC 46 ms
62,744 KB
testcase_29 AC 49 ms
63,784 KB
testcase_30 AC 46 ms
61,676 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

S = list(map(int, input()))

def ok(S):
    cnt = [0] * 10
    for s in S:
        cnt[s] += 1
    if all(c in [0, 2] for c in cnt):
        return True
    if any(c >= 5 for c in cnt):
        return False
    
    def dfs(i):
        if i == 5:
            return True
        if i == 0:
            for j in range(1, 10):
                if cnt[j] >= 2:
                    cnt[j] -= 2
                    if dfs(i + 1):
                        return True
                    cnt[j] += 2
        else:
            for j in range(1, 10):
                if cnt[j] >= 3:
                    cnt[j] -= 3
                    if dfs(i + 1):
                        return True
                    cnt[j] += 3
            for j in range(3, 10):
                if cnt[j] >= 1 and cnt[j - 1] >= 1 and cnt[j - 2] >= 1:
                    cnt[j] -= 1
                    cnt[j - 1] -= 1
                    cnt[j - 2] -= 1
                    if dfs(i + 1):
                        return True
                    cnt[j] += 1
                    cnt[j - 1] += 1
                    cnt[j - 2] += 1
            
        return False
    
    return dfs(0)


for i in range(1, 10):
    S.append(i)
    if ok(S[:]):
        print(i)
    S.pop()
    
0