結果

問題 No.411 昇順昇順ソート
ユーザー Daigo HIROOKADaigo HIROOKA
提出日時 2018-07-03 01:34:20
言語 Java21
(openjdk 21)
結果
AC  
実行時間 142 ms / 2,000 ms
コード長 409 bytes
コンパイル時間 3,397 ms
コンパイル使用メモリ 80,228 KB
実行使用メモリ 54,252 KB
最終ジャッジ日時 2024-07-01 01:51:40
合計ジャッジ時間 9,295 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 132 ms
53,924 KB
testcase_01 AC 132 ms
53,924 KB
testcase_02 AC 137 ms
54,036 KB
testcase_03 AC 139 ms
53,980 KB
testcase_04 AC 136 ms
53,936 KB
testcase_05 AC 136 ms
53,748 KB
testcase_06 AC 135 ms
54,024 KB
testcase_07 AC 135 ms
53,992 KB
testcase_08 AC 134 ms
54,252 KB
testcase_09 AC 138 ms
54,196 KB
testcase_10 AC 133 ms
53,996 KB
testcase_11 AC 136 ms
54,000 KB
testcase_12 AC 134 ms
54,036 KB
testcase_13 AC 138 ms
54,012 KB
testcase_14 AC 137 ms
53,688 KB
testcase_15 AC 141 ms
53,980 KB
testcase_16 AC 135 ms
53,920 KB
testcase_17 AC 136 ms
53,956 KB
testcase_18 AC 136 ms
54,188 KB
testcase_19 AC 133 ms
53,664 KB
testcase_20 AC 138 ms
53,744 KB
testcase_21 AC 136 ms
53,904 KB
testcase_22 AC 135 ms
54,008 KB
testcase_23 AC 135 ms
54,044 KB
testcase_24 AC 136 ms
53,896 KB
testcase_25 AC 137 ms
54,144 KB
testcase_26 AC 142 ms
53,760 KB
testcase_27 AC 134 ms
53,632 KB
testcase_28 AC 135 ms
53,840 KB
testcase_29 AC 137 ms
53,832 KB
testcase_30 AC 134 ms
53,892 KB
testcase_31 AC 133 ms
54,088 KB
testcase_32 AC 133 ms
53,928 KB
testcase_33 AC 134 ms
53,808 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(aasort(n));
		}else{
			System.out.println((int)Math.pow(2, n-k));
		}
	}
	private static int aasort(int n){
		if(n == 2){
			return 0;
		}else{
			return (int)Math.pow(2, n-2)-1 + aasort(n-1);
		}
	}
}
0