結果

問題 No.411 昇順昇順ソート
ユーザー tookunn_1213tookunn_1213
提出日時 2016-09-24 19:53:43
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 670 ms / 2,000 ms
コード長 191 bytes
コンパイル時間 270 ms
コンパイル使用メモリ 82,316 KB
実行使用メモリ 76,612 KB
最終ジャッジ日時 2024-11-18 09:49:02
合計ジャッジ時間 5,586 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
52,568 KB
testcase_01 AC 34 ms
54,016 KB
testcase_02 AC 34 ms
52,660 KB
testcase_03 AC 34 ms
53,072 KB
testcase_04 AC 35 ms
54,088 KB
testcase_05 AC 34 ms
53,644 KB
testcase_06 AC 34 ms
53,124 KB
testcase_07 AC 33 ms
52,968 KB
testcase_08 AC 34 ms
52,804 KB
testcase_09 AC 36 ms
54,472 KB
testcase_10 AC 38 ms
52,740 KB
testcase_11 AC 34 ms
53,216 KB
testcase_12 AC 34 ms
53,104 KB
testcase_13 AC 35 ms
53,876 KB
testcase_14 AC 35 ms
52,952 KB
testcase_15 AC 35 ms
53,200 KB
testcase_16 AC 35 ms
52,136 KB
testcase_17 AC 36 ms
52,416 KB
testcase_18 AC 35 ms
53,636 KB
testcase_19 AC 35 ms
53,552 KB
testcase_20 AC 35 ms
52,316 KB
testcase_21 AC 33 ms
53,756 KB
testcase_22 AC 32 ms
53,160 KB
testcase_23 AC 32 ms
52,612 KB
testcase_24 AC 32 ms
53,072 KB
testcase_25 AC 34 ms
52,284 KB
testcase_26 AC 34 ms
53,376 KB
testcase_27 AC 81 ms
76,144 KB
testcase_28 AC 670 ms
76,040 KB
testcase_29 AC 337 ms
76,416 KB
testcase_30 AC 571 ms
76,540 KB
testcase_31 AC 595 ms
76,364 KB
testcase_32 AC 580 ms
76,500 KB
testcase_33 AC 594 ms
76,612 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,K=map(int,input().split())
a=0
for i in range(1,(1<<N)-1):
	b=[j+1 for j in range(N)if((i>>j)&1)]
	c=[j+1 for j in range(N)if not((i>>j)&1)]
	if min(b)==K and max(b)>min(c):
		a+=1
print(a)
0