結果

問題 No.832 麻雀修行中
ユーザー vwxyzvwxyz
提出日時 2024-04-07 22:12:58
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 796 bytes
コンパイル時間 291 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 17,952 KB
最終ジャッジ日時 2024-10-01 04:47:10
合計ジャッジ時間 18,939 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 331 ms
11,008 KB
testcase_01 AC 339 ms
10,880 KB
testcase_02 AC 385 ms
10,880 KB
testcase_03 AC 275 ms
10,880 KB
testcase_04 AC 710 ms
11,008 KB
testcase_05 AC 681 ms
10,880 KB
testcase_06 AC 521 ms
11,008 KB
testcase_07 AC 717 ms
10,880 KB
testcase_08 AC 644 ms
10,880 KB
testcase_09 AC 280 ms
10,880 KB
testcase_10 AC 887 ms
10,880 KB
testcase_11 AC 227 ms
10,880 KB
testcase_12 AC 307 ms
10,880 KB
testcase_13 AC 302 ms
10,880 KB
testcase_14 AC 354 ms
10,880 KB
testcase_15 AC 1,160 ms
10,880 KB
testcase_16 AC 192 ms
11,008 KB
testcase_17 AC 303 ms
10,880 KB
testcase_18 AC 389 ms
11,008 KB
testcase_19 AC 512 ms
10,880 KB
testcase_20 AC 729 ms
11,008 KB
testcase_21 AC 642 ms
10,880 KB
testcase_22 AC 399 ms
11,008 KB
testcase_23 AC 173 ms
10,880 KB
testcase_24 AC 779 ms
10,880 KB
testcase_25 AC 1,094 ms
10,880 KB
testcase_26 AC 419 ms
10,880 KB
testcase_27 TLE -
testcase_28 AC 217 ms
10,880 KB
testcase_29 AC 139 ms
11,008 KB
testcase_30 AC 1,122 ms
11,008 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import itertools

def check(A):
    N=len(A)
    if N==0:
        return True
    if N==3:
        A=sorted(A)
        return {b-a for a,b in zip(A,A[1:])} in ({0},{1})
    if N==14:
        for i in range(N):
            for j in range(i+1,N):
                if A[i]==A[j] and check([A[k] for k in range(N) if not k in (i,j)]):
                    return True
        A=sorted(A)
        if all(a==b for a,b in zip(A[::2],A[1::2])) and len(set(A))==7:
            return True
    else:
        for tpl in itertools.combinations(range(N),3):
            if check([A[i] for i in tpl]) and check([A[k] for k in range(N) if not k in tpl]):
                return True
    return False
S=[int(s) for s in input()]
for ans in range(1,10):
    if check(S+[ans]) and S.count(ans)<=3:
        print(ans)
0