結果

問題 No.334 門松ゲーム
ユーザー nanaenanae
提出日時 2017-02-10 06:48:33
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 45 ms / 2,000 ms
コード長 723 bytes
コンパイル時間 267 ms
コンパイル使用メモリ 12,288 KB
実行使用メモリ 10,624 KB
最終ジャッジ日時 2024-12-26 14:22:16
合計ジャッジ時間 1,831 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
10,496 KB
testcase_01 AC 36 ms
10,624 KB
testcase_02 AC 42 ms
10,496 KB
testcase_03 AC 37 ms
10,368 KB
testcase_04 AC 39 ms
10,496 KB
testcase_05 AC 36 ms
10,368 KB
testcase_06 AC 38 ms
10,496 KB
testcase_07 AC 41 ms
10,368 KB
testcase_08 AC 38 ms
10,496 KB
testcase_09 AC 39 ms
10,624 KB
testcase_10 AC 45 ms
10,368 KB
testcase_11 AC 39 ms
10,496 KB
testcase_12 AC 36 ms
10,496 KB
testcase_13 AC 36 ms
10,496 KB
testcase_14 AC 40 ms
10,496 KB
testcase_15 AC 40 ms
10,496 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