結果

問題 No.411 昇順昇順ソート
ユーザー YamaKasaYamaKasa
提出日時 2018-09-19 23:21:59
言語 Java21
(openjdk 21)
結果
AC  
実行時間 132 ms / 2,000 ms
コード長 341 bytes
コンパイル時間 2,118 ms
コンパイル使用メモリ 74,084 KB
実行使用メモリ 41,704 KB
最終ジャッジ日時 2024-07-18 08:21:53
合計ジャッジ時間 7,117 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 113 ms
41,400 KB
testcase_01 AC 97 ms
41,524 KB
testcase_02 AC 113 ms
41,296 KB
testcase_03 AC 127 ms
41,152 KB
testcase_04 AC 118 ms
40,328 KB
testcase_05 AC 132 ms
41,244 KB
testcase_06 AC 99 ms
41,496 KB
testcase_07 AC 99 ms
41,460 KB
testcase_08 AC 111 ms
41,436 KB
testcase_09 AC 109 ms
41,428 KB
testcase_10 AC 106 ms
41,368 KB
testcase_11 AC 115 ms
41,492 KB
testcase_12 AC 116 ms
41,292 KB
testcase_13 AC 99 ms
41,536 KB
testcase_14 AC 107 ms
41,536 KB
testcase_15 AC 98 ms
41,352 KB
testcase_16 AC 98 ms
41,288 KB
testcase_17 AC 108 ms
41,528 KB
testcase_18 AC 107 ms
41,316 KB
testcase_19 AC 112 ms
41,432 KB
testcase_20 AC 97 ms
40,988 KB
testcase_21 AC 100 ms
41,492 KB
testcase_22 AC 110 ms
41,308 KB
testcase_23 AC 118 ms
41,108 KB
testcase_24 AC 111 ms
40,352 KB
testcase_25 AC 110 ms
41,704 KB
testcase_26 AC 107 ms
41,256 KB
testcase_27 AC 99 ms
41,548 KB
testcase_28 AC 108 ms
41,444 KB
testcase_29 AC 99 ms
41,364 KB
testcase_30 AC 107 ms
41,536 KB
testcase_31 AC 109 ms
41,324 KB
testcase_32 AC 107 ms
41,484 KB
testcase_33 AC 117 ms
41,304 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
	public static void main(String[] args) {
		Scanner scan = new Scanner(System.in);
		int N = scan.nextInt();
		int K = scan.nextInt();
		scan.close();
		int ans;
		if(K == 1) {
			ans = (int)Math.pow(2, N - K) - N;
		}else {
			ans = (int)Math.pow(2, N - K);
		}
		System.out.println(ans);
	}
}
0