結果
問題 | No.411 昇順昇順ソート |
ユーザー | Grenache |
提出日時 | 2016-08-12 23:21:38 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,514 bytes |
コンパイル時間 | 3,384 ms |
コンパイル使用メモリ | 78,560 KB |
実行使用メモリ | 37,756 KB |
最終ジャッジ日時 | 2024-11-07 15:49:03 |
合計ジャッジ時間 | 6,342 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 58 ms
37,520 KB |
testcase_01 | AC | 57 ms
37,384 KB |
testcase_02 | AC | 58 ms
37,328 KB |
testcase_03 | AC | 58 ms
37,592 KB |
testcase_04 | AC | 57 ms
37,136 KB |
testcase_05 | AC | 57 ms
37,392 KB |
testcase_06 | AC | 58 ms
37,600 KB |
testcase_07 | AC | 56 ms
37,500 KB |
testcase_08 | AC | 60 ms
37,376 KB |
testcase_09 | AC | 61 ms
37,324 KB |
testcase_10 | AC | 61 ms
37,264 KB |
testcase_11 | AC | 59 ms
37,280 KB |
testcase_12 | AC | 60 ms
37,136 KB |
testcase_13 | AC | 59 ms
37,552 KB |
testcase_14 | AC | 62 ms
37,112 KB |
testcase_15 | AC | 59 ms
37,136 KB |
testcase_16 | AC | 58 ms
37,308 KB |
testcase_17 | AC | 58 ms
37,136 KB |
testcase_18 | AC | 58 ms
37,040 KB |
testcase_19 | AC | 59 ms
37,488 KB |
testcase_20 | AC | 57 ms
37,492 KB |
testcase_21 | AC | 60 ms
37,104 KB |
testcase_22 | AC | 58 ms
37,324 KB |
testcase_23 | AC | 62 ms
37,248 KB |
testcase_24 | WA | - |
testcase_25 | AC | 55 ms
37,572 KB |
testcase_26 | AC | 55 ms
37,116 KB |
testcase_27 | WA | - |
testcase_28 | WA | - |
testcase_29 | AC | 56 ms
36,876 KB |
testcase_30 | AC | 54 ms
37,396 KB |
testcase_31 | AC | 55 ms
37,112 KB |
testcase_32 | AC | 58 ms
37,432 KB |
testcase_33 | AC | 56 ms
37,516 KB |
ソースコード
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(0); } 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); } } }