結果

問題 No.832 麻雀修行中
ユーザー stngstng
提出日時 2022-07-10 12:56:04
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,503 bytes
コンパイル時間 683 ms
コンパイル使用メモリ 82,824 KB
実行使用メモリ 77,004 KB
最終ジャッジ日時 2024-06-10 23:01:19
合計ジャッジ時間 3,082 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 76 ms
76,876 KB
testcase_01 AC 56 ms
68,140 KB
testcase_02 AC 54 ms
67,820 KB
testcase_03 AC 55 ms
70,016 KB
testcase_04 AC 62 ms
72,368 KB
testcase_05 AC 62 ms
71,092 KB
testcase_06 AC 58 ms
69,856 KB
testcase_07 AC 58 ms
70,852 KB
testcase_08 AC 57 ms
70,380 KB
testcase_09 AC 61 ms
72,456 KB
testcase_10 AC 58 ms
70,384 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 65 ms
74,572 KB
testcase_14 WA -
testcase_15 AC 72 ms
76,648 KB
testcase_16 AC 78 ms
76,996 KB
testcase_17 AC 79 ms
76,620 KB
testcase_18 AC 64 ms
73,480 KB
testcase_19 AC 62 ms
72,724 KB
testcase_20 AC 57 ms
70,752 KB
testcase_21 WA -
testcase_22 AC 68 ms
75,832 KB
testcase_23 WA -
testcase_24 AC 59 ms
69,956 KB
testcase_25 AC 60 ms
71,612 KB
testcase_26 AC 77 ms
77,004 KB
testcase_27 AC 51 ms
66,820 KB
testcase_28 AC 80 ms
76,944 KB
testcase_29 AC 51 ms
65,588 KB
testcase_30 AC 63 ms
73,360 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):
    s = li[:]
    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

    

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





0