結果

問題 No.820 Power of Two
ユーザー heyanxx
提出日時 2019-07-03 15:01:03
言語 Java
(openjdk 23)
結果
TLE  
実行時間 -
コード長 891 bytes
コンパイル時間 3,547 ms
コンパイル使用メモリ 74,644 KB
実行使用メモリ 43,796 KB
最終ジャッジ日時 2024-09-15 07:06:19
合計ジャッジ時間 7,308 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 2 TLE * 1 -- * 7
権限があれば一括ダウンロードができます

ソースコード

diff #

package test.demo;

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.util.Scanner;

public class YukicoderN820 {

	public static void main(String[] args) {
		// TODO 自動生成されたメソッド・スタブ
		BufferedReader bf=new BufferedReader(new InputStreamReader(System.in));
		try {
			String str=bf.readLine();
			
			String[] str2=str.split(" ");
			if(str2.length==2) {
			int a=Integer.parseInt(str2[0]);
			int b=Integer.parseInt(str2[1]);

			System.out.println(new YukicoderN820().test(a,b));
			}else {
				throw new IOException();
			}
			
			return;
		} catch (IOException e) {
			// TODO 自動生成された catch ブロック
			e.printStackTrace();
		}
		

	}
	public int test(int a,int b) {
		int c=0;
		for(int i=1;i<=Math.pow(2, a);i++) {
			if(i%Math.pow(2, b)==0) {
				c++;
			}
		}
	return c;
		
	}

}
0