結果

問題 No.722 100×100=1000
ユーザー tsunabittsunabit
提出日時 2019-07-01 21:40:51
言語 Java
(openjdk 23)
結果
AC  
実行時間 149 ms / 2,000 ms
コード長 951 bytes
コンパイル時間 4,107 ms
コンパイル使用メモリ 77,916 KB
実行使用メモリ 41,824 KB
最終ジャッジ日時 2024-12-29 19:46:44
合計ジャッジ時間 9,235 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 135 ms
41,556 KB
testcase_01 AC 137 ms
41,760 KB
testcase_02 AC 138 ms
41,528 KB
testcase_03 AC 146 ms
41,496 KB
testcase_04 AC 140 ms
41,408 KB
testcase_05 AC 142 ms
41,580 KB
testcase_06 AC 135 ms
41,140 KB
testcase_07 AC 136 ms
41,284 KB
testcase_08 AC 141 ms
41,192 KB
testcase_09 AC 137 ms
41,572 KB
testcase_10 AC 137 ms
41,448 KB
testcase_11 AC 141 ms
41,648 KB
testcase_12 AC 123 ms
40,452 KB
testcase_13 AC 125 ms
40,452 KB
testcase_14 AC 149 ms
41,724 KB
testcase_15 AC 135 ms
41,560 KB
testcase_16 AC 137 ms
41,824 KB
testcase_17 AC 138 ms
41,108 KB
testcase_18 AC 120 ms
40,088 KB
testcase_19 AC 119 ms
40,220 KB
testcase_20 AC 123 ms
40,380 KB
testcase_21 AC 143 ms
41,440 KB
testcase_22 AC 136 ms
41,692 KB
testcase_23 AC 134 ms
41,548 KB
testcase_24 AC 142 ms
41,332 KB
testcase_25 AC 136 ms
41,444 KB
testcase_26 AC 124 ms
40,360 KB
testcase_27 AC 135 ms
41,656 KB
testcase_28 AC 140 ms
41,456 KB
testcase_29 AC 137 ms
41,512 KB
testcase_30 AC 137 ms
41,644 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class No722 {
    public static void main(String[] args) {
    	Scanner sc = new Scanner(System.in);
    	BigDecimal a = new BigDecimal(sc.nextInt()), b = new BigDecimal(sc.nextInt());
    	BigDecimal j = new BigDecimal(10), z = new BigDecimal(0), m = new BigDecimal(-1), h = new BigDecimal(100);
    	
    	if(a.abs().toString().replaceAll("0", "").length() == 1 && b.abs().toString().replaceAll("0", "").length() == 1 &&
    	   a.remainder(j).equals(z) && b.remainder(j).equals(z) && a.toString().length() > 2 && b.toString().length() > 2) {
    		System.out.println(a.multiply(b).divide(j));
    	}else {
    		BigDecimal min = new BigDecimal(-99999999), max = new BigDecimal(99999999);
    		if(a.multiply(b).compareTo(min) >= 0 && a.multiply(b).compareTo(max) <= 0) {
    			System.out.println(a.multiply(b));
    		}else {
    			System.out.println("E");
    		}
    	}
    }
}
0