結果

問題 No.411 昇順昇順ソート
ユーザー TatsuDXTatsuDX
提出日時 2016-09-09 00:39:41
言語 Java21
(openjdk 21)
結果
AC  
実行時間 143 ms / 2,000 ms
コード長 290 bytes
コンパイル時間 3,071 ms
コンパイル使用メモリ 74,852 KB
実行使用メモリ 54,052 KB
最終ジャッジ日時 2024-11-15 22:53:52
合計ジャッジ時間 8,289 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 125 ms
53,672 KB
testcase_01 AC 121 ms
54,028 KB
testcase_02 AC 124 ms
53,944 KB
testcase_03 AC 113 ms
52,756 KB
testcase_04 AC 123 ms
53,988 KB
testcase_05 AC 123 ms
54,000 KB
testcase_06 AC 128 ms
53,968 KB
testcase_07 AC 112 ms
53,044 KB
testcase_08 AC 121 ms
53,928 KB
testcase_09 AC 122 ms
53,676 KB
testcase_10 AC 122 ms
53,852 KB
testcase_11 AC 125 ms
54,044 KB
testcase_12 AC 126 ms
53,900 KB
testcase_13 AC 125 ms
54,032 KB
testcase_14 AC 123 ms
53,956 KB
testcase_15 AC 143 ms
53,772 KB
testcase_16 AC 121 ms
53,668 KB
testcase_17 AC 113 ms
52,728 KB
testcase_18 AC 124 ms
54,028 KB
testcase_19 AC 116 ms
53,296 KB
testcase_20 AC 126 ms
53,932 KB
testcase_21 AC 123 ms
53,752 KB
testcase_22 AC 119 ms
53,896 KB
testcase_23 AC 124 ms
53,948 KB
testcase_24 AC 121 ms
54,052 KB
testcase_25 AC 122 ms
54,004 KB
testcase_26 AC 125 ms
53,988 KB
testcase_27 AC 123 ms
53,780 KB
testcase_28 AC 111 ms
52,536 KB
testcase_29 AC 121 ms
53,912 KB
testcase_30 AC 111 ms
52,540 KB
testcase_31 AC 110 ms
52,884 KB
testcase_32 AC 124 ms
53,800 KB
testcase_33 AC 111 ms
52,920 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Test {
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);

		int n = sc.nextInt(), k = sc.nextInt(), ans = 1;
		for(int i = k+1; i <= n; i++){
			ans *= 2;
		}
		if(k == 1){
			ans-=n;
		}
		System.out.println(ans);
	}
}
0