結果

問題 No.722 100×100=1000
ユーザー tsunabittsunabit
提出日時 2019-07-01 21:40:51
言語 Java21
(openjdk 21)
結果
AC  
実行時間 141 ms / 2,000 ms
コード長 951 bytes
コンパイル時間 3,618 ms
コンパイル使用メモリ 78,504 KB
実行使用メモリ 41,684 KB
最終ジャッジ日時 2024-06-09 11:08:34
合計ジャッジ時間 9,114 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 135 ms
41,548 KB
testcase_01 AC 136 ms
41,640 KB
testcase_02 AC 138 ms
41,416 KB
testcase_03 AC 134 ms
41,596 KB
testcase_04 AC 141 ms
41,496 KB
testcase_05 AC 136 ms
41,504 KB
testcase_06 AC 134 ms
41,420 KB
testcase_07 AC 139 ms
41,672 KB
testcase_08 AC 137 ms
41,268 KB
testcase_09 AC 138 ms
41,368 KB
testcase_10 AC 139 ms
41,216 KB
testcase_11 AC 134 ms
41,336 KB
testcase_12 AC 131 ms
41,012 KB
testcase_13 AC 132 ms
41,248 KB
testcase_14 AC 135 ms
41,612 KB
testcase_15 AC 134 ms
41,184 KB
testcase_16 AC 133 ms
41,452 KB
testcase_17 AC 132 ms
41,276 KB
testcase_18 AC 136 ms
41,304 KB
testcase_19 AC 137 ms
41,448 KB
testcase_20 AC 135 ms
41,288 KB
testcase_21 AC 133 ms
41,408 KB
testcase_22 AC 132 ms
41,684 KB
testcase_23 AC 140 ms
41,532 KB
testcase_24 AC 141 ms
41,180 KB
testcase_25 AC 133 ms
41,524 KB
testcase_26 AC 138 ms
41,588 KB
testcase_27 AC 137 ms
41,592 KB
testcase_28 AC 139 ms
41,264 KB
testcase_29 AC 134 ms
41,168 KB
testcase_30 AC 135 ms
41,500 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