結果
問題 | No.334 門松ゲーム |
ユーザー | 👑 Kazun |
提出日時 | 2021-02-10 01:24:57 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 75 ms / 2,000 ms |
コード長 | 815 bytes |
コンパイル時間 | 177 ms |
コンパイル使用メモリ | 82,176 KB |
実行使用メモリ | 75,836 KB |
最終ジャッジ日時 | 2024-07-07 06:32:58 |
合計ジャッジ時間 | 1,731 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 35 ms
52,352 KB |
testcase_01 | AC | 36 ms
52,096 KB |
testcase_02 | AC | 63 ms
70,732 KB |
testcase_03 | AC | 35 ms
52,352 KB |
testcase_04 | AC | 34 ms
51,968 KB |
testcase_05 | AC | 35 ms
52,352 KB |
testcase_06 | AC | 49 ms
66,176 KB |
testcase_07 | AC | 56 ms
68,992 KB |
testcase_08 | AC | 50 ms
64,896 KB |
testcase_09 | AC | 49 ms
65,792 KB |
testcase_10 | AC | 75 ms
75,836 KB |
testcase_11 | AC | 52 ms
66,944 KB |
testcase_12 | AC | 43 ms
62,464 KB |
testcase_13 | AC | 43 ms
62,208 KB |
testcase_14 | AC | 48 ms
64,256 KB |
testcase_15 | AC | 50 ms
65,920 KB |
ソースコード
def is_kadomatsu(x,y,z): if x==y or y==z or z==x: return False return (x>y<z) or (x<y>z) def bit(i,j,k): return (1<<i)+(1<<j)+(1<<k) def f(S): if Flag[S]!=-1: return Flag[S] for i in range(N): for j in range(i+1,N): for k in range(j+1,N): if bit(i,j,k)&S or (not is_kadomatsu(K[i],K[j],K[k])): continue if not f(S|bit(i,j,k)): Flag[S]=1 return 1 Flag[S]=0 return 0 N=int(input()) K=list(map(int,input().split())) Flag=[-1]*(1<<N) if f(0)==0: print(-1) else: for i in range(N): for j in range(i+1,N): for k in range(j+1,N): if not Flag[bit(i,j,k)]: print(i,j,k) exit()