結果

問題 No.411 昇順昇順ソート
ユーザー FromBooskaFromBooska
提出日時 2023-10-19 12:15:10
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 487 ms / 2,000 ms
コード長 567 bytes
コンパイル時間 270 ms
コンパイル使用メモリ 81,976 KB
実行使用メモリ 76,208 KB
最終ジャッジ日時 2024-09-19 08:18:41
合計ジャッジ時間 5,167 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,340 KB
testcase_01 AC 36 ms
52,672 KB
testcase_02 AC 33 ms
53,284 KB
testcase_03 AC 35 ms
52,752 KB
testcase_04 AC 36 ms
53,820 KB
testcase_05 AC 36 ms
52,200 KB
testcase_06 AC 37 ms
53,808 KB
testcase_07 AC 36 ms
53,664 KB
testcase_08 AC 35 ms
52,620 KB
testcase_09 AC 35 ms
52,816 KB
testcase_10 AC 37 ms
54,132 KB
testcase_11 AC 36 ms
52,284 KB
testcase_12 AC 35 ms
53,228 KB
testcase_13 AC 35 ms
52,068 KB
testcase_14 AC 35 ms
53,420 KB
testcase_15 AC 35 ms
51,936 KB
testcase_16 AC 35 ms
53,080 KB
testcase_17 AC 34 ms
52,852 KB
testcase_18 AC 36 ms
52,648 KB
testcase_19 AC 34 ms
52,988 KB
testcase_20 AC 35 ms
52,648 KB
testcase_21 AC 36 ms
52,872 KB
testcase_22 AC 35 ms
52,956 KB
testcase_23 AC 34 ms
53,128 KB
testcase_24 AC 35 ms
52,132 KB
testcase_25 AC 36 ms
51,876 KB
testcase_26 AC 35 ms
52,708 KB
testcase_27 AC 53 ms
71,204 KB
testcase_28 AC 487 ms
75,760 KB
testcase_29 AC 202 ms
76,028 KB
testcase_30 AC 481 ms
75,644 KB
testcase_31 AC 471 ms
76,208 KB
testcase_32 AC 467 ms
75,784 KB
testcase_33 AC 464 ms
75,708 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# ビット全探索で前半の昇順リストを作る、残りが後半の昇順リスト
# 後半の第1項が前半の最後項よりも辞書順前ならカウント

N, K = map(int, input().split())
count = 0
for bit in range(1<<N):
    chosen = []
    unchosen = []
    for shift in range(N):
        if bit>>shift&1 == 1:
            chosen.append(shift+1)
        else:
            unchosen.append(shift+1)
    if len(chosen)>0 and len(unchosen)>0 and chosen[-1]>unchosen[0] and chosen[0]==K:
        #print(chosen, unchosen)
        count += 1
print(count)
0