結果

問題 No.832 麻雀修行中
ユーザー vwxyzvwxyz
提出日時 2024-04-07 22:13:29
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,249 ms / 2,000 ms
コード長 796 bytes
コンパイル時間 403 ms
コンパイル使用メモリ 82,352 KB
実行使用メモリ 82,028 KB
最終ジャッジ日時 2024-10-01 04:47:23
合計ジャッジ時間 12,902 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 265 ms
77,788 KB
testcase_01 AC 297 ms
78,240 KB
testcase_02 AC 338 ms
78,592 KB
testcase_03 AC 211 ms
77,092 KB
testcase_04 AC 426 ms
77,856 KB
testcase_05 AC 412 ms
78,180 KB
testcase_06 AC 353 ms
79,092 KB
testcase_07 AC 457 ms
78,672 KB
testcase_08 AC 400 ms
78,132 KB
testcase_09 AC 257 ms
77,736 KB
testcase_10 AC 465 ms
77,672 KB
testcase_11 AC 220 ms
77,328 KB
testcase_12 AC 241 ms
77,464 KB
testcase_13 AC 241 ms
78,372 KB
testcase_14 AC 276 ms
78,220 KB
testcase_15 AC 565 ms
78,592 KB
testcase_16 AC 175 ms
77,284 KB
testcase_17 AC 222 ms
77,944 KB
testcase_18 AC 283 ms
77,548 KB
testcase_19 AC 351 ms
77,884 KB
testcase_20 AC 481 ms
79,560 KB
testcase_21 AC 429 ms
78,040 KB
testcase_22 AC 276 ms
77,756 KB
testcase_23 AC 173 ms
77,616 KB
testcase_24 AC 465 ms
78,224 KB
testcase_25 AC 646 ms
80,524 KB
testcase_26 AC 288 ms
77,596 KB
testcase_27 AC 1,249 ms
82,028 KB
testcase_28 AC 185 ms
77,084 KB
testcase_29 AC 183 ms
77,400 KB
testcase_30 AC 563 ms
79,436 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