結果

問題 No.745 letinopia raoha
ユーザー tsunabittsunabit
提出日時 2019-07-08 00:05:04
言語 Java21
(openjdk 21)
結果
AC  
実行時間 120 ms / 2,000 ms
コード長 616 bytes
コンパイル時間 2,953 ms
コンパイル使用メモリ 80,484 KB
実行使用メモリ 41,632 KB
最終ジャッジ日時 2024-10-05 20:49:35
合計ジャッジ時間 4,714 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 98 ms
39,868 KB
testcase_01 AC 116 ms
41,304 KB
testcase_02 AC 117 ms
41,144 KB
testcase_03 AC 120 ms
41,152 KB
testcase_04 AC 116 ms
41,412 KB
testcase_05 AC 116 ms
41,276 KB
testcase_06 AC 105 ms
40,024 KB
testcase_07 AC 101 ms
40,252 KB
testcase_08 AC 106 ms
41,632 KB
testcase_09 AC 98 ms
40,280 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class No745 {
    public static void main(String[] args) {
    	Scanner sc = new Scanner(System.in);
    	int a = sc.nextInt(), b = sc.nextInt(), c = sc.nextInt(), d = sc.nextInt();
    	int o = 0 , k = 0;
    	if(d >= 10) {
    		System.out.println("Impossible");
    		return;
    	}
    	
    	for(int i = 0; i < b; i++) {
    		o += (int)Math.pow(2, i / 100) * 50;
    	}
    	for(int i = b; i < a + b; i++) {
    		o += (int)Math.pow(2, i / 100) * 100;
    	}
    	
    	System.out.println("Possible");
    	System.out.println(o);
    	
    }
}
0