結果

問題 No.411 昇順昇順ソート
ユーザー TatsuDXTatsuDX
提出日時 2016-09-09 00:38:50
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 290 bytes
コンパイル時間 3,682 ms
コンパイル使用メモリ 74,752 KB
実行使用メモリ 56,008 KB
最終ジャッジ日時 2024-11-15 22:53:42
合計ジャッジ時間 8,520 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 122 ms
53,704 KB
testcase_01 AC 124 ms
53,768 KB
testcase_02 AC 123 ms
53,924 KB
testcase_03 AC 123 ms
53,860 KB
testcase_04 AC 125 ms
54,064 KB
testcase_05 AC 124 ms
54,156 KB
testcase_06 AC 112 ms
52,780 KB
testcase_07 AC 111 ms
52,888 KB
testcase_08 AC 120 ms
53,640 KB
testcase_09 AC 124 ms
53,740 KB
testcase_10 AC 121 ms
53,708 KB
testcase_11 AC 123 ms
53,676 KB
testcase_12 AC 123 ms
53,824 KB
testcase_13 AC 124 ms
54,120 KB
testcase_14 AC 120 ms
54,096 KB
testcase_15 AC 122 ms
53,788 KB
testcase_16 AC 130 ms
54,132 KB
testcase_17 AC 120 ms
53,860 KB
testcase_18 AC 120 ms
53,908 KB
testcase_19 AC 125 ms
54,132 KB
testcase_20 AC 125 ms
53,828 KB
testcase_21 AC 126 ms
54,108 KB
testcase_22 AC 110 ms
52,708 KB
testcase_23 AC 115 ms
53,456 KB
testcase_24 WA -
testcase_25 AC 122 ms
53,724 KB
testcase_26 AC 122 ms
56,008 KB
testcase_27 WA -
testcase_28 WA -
testcase_29 AC 129 ms
54,000 KB
testcase_30 AC 121 ms
54,068 KB
testcase_31 AC 122 ms
53,768 KB
testcase_32 AC 124 ms
54,176 KB
testcase_33 AC 124 ms
54,044 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-=2;
		}
		System.out.println(ans);
	}
}
0