結果

問題 No.411 昇順昇順ソート
ユーザー sasa8uyauyasasa8uyauya
提出日時 2024-09-11 03:27:49
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 672 ms / 2,000 ms
コード長 178 bytes
コンパイル時間 368 ms
コンパイル使用メモリ 81,904 KB
実行使用メモリ 75,964 KB
最終ジャッジ日時 2024-09-11 03:27:55
合計ジャッジ時間 6,298 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
53,420 KB
testcase_01 AC 39 ms
52,780 KB
testcase_02 AC 38 ms
52,984 KB
testcase_03 AC 41 ms
52,628 KB
testcase_04 AC 38 ms
52,208 KB
testcase_05 AC 37 ms
52,636 KB
testcase_06 AC 37 ms
53,480 KB
testcase_07 AC 39 ms
52,200 KB
testcase_08 AC 40 ms
52,844 KB
testcase_09 AC 38 ms
53,940 KB
testcase_10 AC 39 ms
52,776 KB
testcase_11 AC 38 ms
52,692 KB
testcase_12 AC 39 ms
52,580 KB
testcase_13 AC 38 ms
52,628 KB
testcase_14 AC 37 ms
52,676 KB
testcase_15 AC 38 ms
52,888 KB
testcase_16 AC 37 ms
52,272 KB
testcase_17 AC 38 ms
53,424 KB
testcase_18 AC 37 ms
52,704 KB
testcase_19 AC 37 ms
53,052 KB
testcase_20 AC 38 ms
52,700 KB
testcase_21 AC 37 ms
52,708 KB
testcase_22 AC 36 ms
53,552 KB
testcase_23 AC 35 ms
52,224 KB
testcase_24 AC 37 ms
52,292 KB
testcase_25 AC 37 ms
52,388 KB
testcase_26 AC 37 ms
52,648 KB
testcase_27 AC 69 ms
75,964 KB
testcase_28 AC 672 ms
75,812 KB
testcase_29 AC 331 ms
75,936 KB
testcase_30 AC 641 ms
75,752 KB
testcase_31 AC 608 ms
75,956 KB
testcase_32 AC 653 ms
75,896 KB
testcase_33 AC 643 ms
75,884 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,k=map(int,input().split())
a=0
for i in range(1,(1<<n)-1):
	l=[j for j in range(n) if (i>>j)&1==1]
	r=[j for j in range(n) if (i>>j)&1==0]
	a+=l[0]==k-1 and l[-1]>r[0]
print(a)
0