結果

問題 No.411 昇順昇順ソート
ユーザー nebukuro09nebukuro09
提出日時 2016-10-26 15:14:55
言語 PyPy2
(7.3.15)
結果
AC  
実行時間 597 ms / 2,000 ms
コード長 357 bytes
コンパイル時間 533 ms
コンパイル使用メモリ 76,928 KB
実行使用メモリ 78,336 KB
最終ジャッジ日時 2024-11-24 03:51:34
合計ジャッジ時間 7,391 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 86 ms
75,264 KB
testcase_01 AC 92 ms
75,392 KB
testcase_02 AC 89 ms
75,264 KB
testcase_03 AC 90 ms
75,008 KB
testcase_04 AC 89 ms
75,032 KB
testcase_05 AC 90 ms
75,416 KB
testcase_06 AC 89 ms
75,436 KB
testcase_07 AC 88 ms
75,384 KB
testcase_08 AC 89 ms
75,168 KB
testcase_09 AC 91 ms
75,008 KB
testcase_10 AC 89 ms
75,392 KB
testcase_11 AC 90 ms
75,040 KB
testcase_12 AC 88 ms
75,300 KB
testcase_13 AC 89 ms
75,392 KB
testcase_14 AC 90 ms
75,392 KB
testcase_15 AC 91 ms
75,392 KB
testcase_16 AC 90 ms
75,136 KB
testcase_17 AC 91 ms
75,392 KB
testcase_18 AC 91 ms
75,264 KB
testcase_19 AC 89 ms
75,008 KB
testcase_20 AC 88 ms
75,140 KB
testcase_21 AC 90 ms
75,580 KB
testcase_22 AC 90 ms
75,164 KB
testcase_23 AC 89 ms
75,180 KB
testcase_24 AC 88 ms
75,648 KB
testcase_25 AC 90 ms
75,264 KB
testcase_26 AC 89 ms
75,412 KB
testcase_27 AC 110 ms
77,956 KB
testcase_28 AC 595 ms
77,824 KB
testcase_29 AC 258 ms
77,824 KB
testcase_30 AC 589 ms
77,952 KB
testcase_31 AC 597 ms
77,852 KB
testcase_32 AC 592 ms
77,864 KB
testcase_33 AC 593 ms
78,336 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, K = map(int, raw_input().split())

ans = 0
for b in xrange(1<<N):
    L1, L2 = [], []
    for i in xrange(N):
        if b & (1<<i):
            L1.append(i+1)
        else:
            L2.append(i+1)
    if len(L1) == 0 or len(L2) == 0:
        continue
    if L1[0] != K:
        continue
    if L1[-1] < L2[0]:
        continue
    ans += 1
print ans
0