結果

問題 No.832 麻雀修行中
ユーザー stngstng
提出日時 2022-07-10 12:54:30
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,498 bytes
コンパイル時間 1,034 ms
コンパイル使用メモリ 82,436 KB
実行使用メモリ 76,964 KB
最終ジャッジ日時 2024-06-10 22:59:08
合計ジャッジ時間 4,005 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 75 ms
76,560 KB
testcase_01 AC 56 ms
68,672 KB
testcase_02 AC 55 ms
67,912 KB
testcase_03 AC 56 ms
69,144 KB
testcase_04 AC 62 ms
71,780 KB
testcase_05 AC 60 ms
69,964 KB
testcase_06 AC 61 ms
71,068 KB
testcase_07 AC 61 ms
72,532 KB
testcase_08 AC 59 ms
71,704 KB
testcase_09 AC 63 ms
72,484 KB
testcase_10 AC 57 ms
70,328 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 67 ms
75,416 KB
testcase_14 WA -
testcase_15 AC 72 ms
76,900 KB
testcase_16 AC 79 ms
76,948 KB
testcase_17 AC 75 ms
76,496 KB
testcase_18 AC 66 ms
73,364 KB
testcase_19 AC 64 ms
72,728 KB
testcase_20 AC 61 ms
70,148 KB
testcase_21 WA -
testcase_22 AC 78 ms
76,964 KB
testcase_23 WA -
testcase_24 AC 60 ms
70,160 KB
testcase_25 AC 61 ms
72,080 KB
testcase_26 AC 76 ms
76,564 KB
testcase_27 AC 54 ms
66,488 KB
testcase_28 AC 84 ms
76,548 KB
testcase_29 AC 51 ms
66,020 KB
testcase_30 AC 63 ms
72,020 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def base10to(n, b):
    if (int(n/b)):
        return base10to(int(n/b), b) + str(n%b)
    return str(n%b)

s = input()
li = [0]*10
for i in range(len(s)):
    li[int(s[i])] += 1

s = li[:]

num = 2**4
ans = set()
for i in range(1,10):
    if s[i] == 4:
        continue
    s[i] += 1
    ori = s[:]
    f = True
    for j in range(10):
        if s[j] != 0 and s[j] != 2:
            f = False
           
    if f == True:
        ans.add(i)
        continue

    for j in range(1,10):
        s = ori[:]
        if s[j] >= 2:
            s[j] -= 2
        else:
            continue
        ori2 = s[:]
        for k in range(num):
            s = ori2[:]
            tmp = str(base10to(k,2)).zfill(4)
            for l in range(4):
                if tmp[l] == "0":
                    for m in range(1,10):
                        if s[m] >= 3:
                            s[m] -= 3
                            break
                if tmp[l] == "1":
                    for m in range(1,8):
                        if s[m] >= 1 and s[m+1] >= 1 and s[m+2] >= 1:
                            s[m] -= 1
                            s[m+1] -= 1
                            s[m+2] -= 1
                #if tmp[l] == "2":
                #    for m in range(3,10):
                #        if s[m-2] >= 1 and s[m-1] >= 1 and s[m]

            if sum(s) == 0:
                ans.add(i)
                break

    s = li[:]

ans = list(ans)
ans.sort()
for i in range(len(ans)):
    print(ans[i])





0