結果

問題 No.411 昇順昇順ソート
ユーザー Daigo HIROOKADaigo HIROOKA
提出日時 2018-07-03 01:09:54
言語 Java
(openjdk 23)
結果
WA  
実行時間 -
コード長 276 bytes
コンパイル時間 5,433 ms
コンパイル使用メモリ 74,124 KB
実行使用メモリ 56,152 KB
最終ジャッジ日時 2024-07-01 01:51:02
合計ジャッジ時間 11,406 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 131 ms
54,132 KB
testcase_01 AC 128 ms
53,740 KB
testcase_02 AC 128 ms
53,892 KB
testcase_03 AC 130 ms
54,040 KB
testcase_04 AC 129 ms
53,844 KB
testcase_05 AC 135 ms
54,088 KB
testcase_06 AC 133 ms
54,164 KB
testcase_07 AC 132 ms
53,812 KB
testcase_08 AC 131 ms
53,972 KB
testcase_09 AC 132 ms
53,860 KB
testcase_10 AC 131 ms
53,736 KB
testcase_11 AC 135 ms
53,944 KB
testcase_12 AC 133 ms
54,128 KB
testcase_13 AC 133 ms
54,136 KB
testcase_14 AC 131 ms
54,020 KB
testcase_15 AC 131 ms
54,048 KB
testcase_16 AC 132 ms
53,780 KB
testcase_17 AC 129 ms
54,104 KB
testcase_18 AC 129 ms
53,788 KB
testcase_19 AC 132 ms
53,964 KB
testcase_20 AC 129 ms
53,620 KB
testcase_21 AC 128 ms
54,068 KB
testcase_22 AC 129 ms
53,736 KB
testcase_23 AC 134 ms
53,896 KB
testcase_24 WA -
testcase_25 AC 127 ms
53,980 KB
testcase_26 AC 130 ms
54,300 KB
testcase_27 WA -
testcase_28 WA -
testcase_29 AC 130 ms
54,000 KB
testcase_30 AC 131 ms
53,984 KB
testcase_31 AC 128 ms
54,088 KB
testcase_32 AC 131 ms
53,928 KB
testcase_33 AC 130 ms
54,216 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

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

		int n = sc.nextInt();
		int k = sc.nextInt();
		if(k == 1){
			System.out.println(0);
			return;
		}

		System.out.println((int)Math.pow(2, n-k));
	}
}
0