結果

問題 No.411 昇順昇順ソート
ユーザー GrenacheGrenache
提出日時 2016-08-13 00:24:57
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 1,531 bytes
コンパイル時間 3,723 ms
コンパイル使用メモリ 78,556 KB
実行使用メモリ 37,976 KB
最終ジャッジ日時 2024-11-07 16:08:21
合計ジャッジ時間 6,964 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 62 ms
37,544 KB
testcase_01 AC 63 ms
37,432 KB
testcase_02 AC 61 ms
37,168 KB
testcase_03 AC 61 ms
37,768 KB
testcase_04 AC 61 ms
37,296 KB
testcase_05 AC 61 ms
37,168 KB
testcase_06 AC 62 ms
37,772 KB
testcase_07 AC 60 ms
37,544 KB
testcase_08 AC 61 ms
37,424 KB
testcase_09 AC 62 ms
37,628 KB
testcase_10 AC 59 ms
37,672 KB
testcase_11 AC 60 ms
37,660 KB
testcase_12 AC 63 ms
37,756 KB
testcase_13 AC 64 ms
37,588 KB
testcase_14 AC 62 ms
37,756 KB
testcase_15 AC 60 ms
37,544 KB
testcase_16 AC 60 ms
37,664 KB
testcase_17 AC 60 ms
37,460 KB
testcase_18 AC 62 ms
37,616 KB
testcase_19 AC 60 ms
37,304 KB
testcase_20 AC 61 ms
37,304 KB
testcase_21 AC 60 ms
37,688 KB
testcase_22 AC 61 ms
37,684 KB
testcase_23 WA -
testcase_24 WA -
testcase_25 AC 60 ms
37,648 KB
testcase_26 AC 61 ms
37,160 KB
testcase_27 WA -
testcase_28 WA -
testcase_29 AC 62 ms
37,460 KB
testcase_30 AC 61 ms
37,544 KB
testcase_31 AC 60 ms
37,180 KB
testcase_32 AC 61 ms
37,588 KB
testcase_33 AC 59 ms
37,520 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;


public class Main_yukicoder411 {

    public static void main(String[] args) {
    	Scanner sc = new Scanner(System.in);
    	Printer pr = new Printer(System.out);

    	int n = sc.nextInt();
    	int k = sc.nextInt();

    	if (k == 1) {
    		pr.println(0x1 << (n - k) - n);
    	} else {
    		pr.println(0x1 << (n - k));
    	}

        pr.close();
        sc.close();
    }

	@SuppressWarnings("unused")
	private static class Scanner {
		BufferedReader br;
		Iterator<String> it;

		Scanner (InputStream in) {
			br = new BufferedReader(new InputStreamReader(in));
		}

		String next() throws RuntimeException  {
			try {
				if (it == null || !it.hasNext()) {
//					it = Arrays.asList(br.readLine().split(" ")).iterator();
					it = Arrays.asList(br.readLine().split("\\p{javaWhitespace}+")).iterator();
				}
				return it.next();
			} catch (IOException e) {
				throw new IllegalStateException();
			}
		}

		int nextInt() throws RuntimeException {
			return Integer.parseInt(next());
		}

		long nextLong() throws RuntimeException {
			return Long.parseLong(next());
		}

		float nextFloat() throws RuntimeException {
			return Float.parseFloat(next());
		}

		double nextDouble() throws RuntimeException {
			return Double.parseDouble(next());
		}

		void close() {
			try {
				br.close();
			} catch (IOException e) {
//				throw new IllegalStateException();
			}
		}
	}

	private static class Printer extends PrintWriter {
		Printer(PrintStream out) {
			super(out);
		}
	}
}
0