結果

問題 No.334 門松ゲーム
ユーザー nanaenanae
提出日時 2017-02-10 06:48:33
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 31 ms / 2,000 ms
コード長 723 bytes
コンパイル時間 134 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 10,752 KB
最終ジャッジ日時 2024-06-08 01:12:36
合計ジャッジ時間 1,552 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 26 ms
10,624 KB
testcase_01 AC 24 ms
10,624 KB
testcase_02 AC 28 ms
10,624 KB
testcase_03 AC 25 ms
10,752 KB
testcase_04 AC 24 ms
10,752 KB
testcase_05 AC 24 ms
10,624 KB
testcase_06 AC 26 ms
10,624 KB
testcase_07 AC 28 ms
10,752 KB
testcase_08 AC 25 ms
10,624 KB
testcase_09 AC 25 ms
10,624 KB
testcase_10 AC 31 ms
10,624 KB
testcase_11 AC 26 ms
10,624 KB
testcase_12 AC 27 ms
10,624 KB
testcase_13 AC 24 ms
10,496 KB
testcase_14 AC 25 ms
10,624 KB
testcase_15 AC 25 ms
10,624 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
from itertools import combinations

def debug(x, table):
    for name, val in table.items():
        if x is val:
            print('DEBUG:{} -> {}'.format(name, val), file=sys.stderr)
            return None

def is_kadomatu(a):
    return a[0] != a[2] and (a[0] - a[1])*(a[2] - a[1]) > 0

def can_win(N, K):
    for i, j, k in combinations(range(N), 3):
        if is_kadomatu([K[i], K[j], K[k]]):
            K1 = K[:i] + K[i + 1:j] + K[j + 1:k] + K[k + 1:]
            if can_win(N - 3, K1) == (-1,):
                return i, j, k

    return (-1,)

def solve():
    N = int(input())
    K = [int(i) for i in input().split()]

    ans = can_win(N, K)

    print(*ans)

if __name__ == '__main__':
    solve()
0