結果

問題 No.175 simpleDNA
ユーザー kenji_shioyakenji_shioya
提出日時 2016-06-16 22:14:02
言語 Java21
(openjdk 21)
結果
AC  
実行時間 136 ms / 1,000 ms
コード長 289 bytes
コンパイル時間 3,315 ms
コンパイル使用メモリ 74,556 KB
実行使用メモリ 41,408 KB
最終ジャッジ日時 2024-10-09 16:39:11
合計ジャッジ時間 5,364 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 133 ms
41,280 KB
testcase_01 AC 119 ms
40,052 KB
testcase_02 AC 134 ms
41,152 KB
testcase_03 AC 134 ms
41,168 KB
testcase_04 AC 134 ms
40,764 KB
testcase_05 AC 133 ms
41,408 KB
testcase_06 AC 134 ms
40,796 KB
testcase_07 AC 134 ms
41,200 KB
testcase_08 AC 136 ms
40,984 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Exercise91{
  public static void main (String[] args){

    Scanner sc = new Scanner(System.in);

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

    int x = l - 3;
    int y = (int)Math.pow((double)2, (double)x);
    System.out.println(y * n);
  }
}
0