結果

問題 No.722 100×100=1000
ユーザー DeAKetsuDeAKetsu
提出日時 2019-06-03 12:28:00
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 623 bytes
コンパイル時間 3,594 ms
コンパイル使用メモリ 76,620 KB
実行使用メモリ 41,588 KB
最終ジャッジ日時 2024-10-12 12:07:03
合計ジャッジ時間 7,823 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 113 ms
40,212 KB
testcase_01 AC 126 ms
41,068 KB
testcase_02 AC 125 ms
41,252 KB
testcase_03 WA -
testcase_04 AC 127 ms
41,336 KB
testcase_05 AC 125 ms
41,144 KB
testcase_06 AC 126 ms
41,336 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 128 ms
40,928 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 126 ms
40,944 KB
testcase_13 AC 127 ms
41,308 KB
testcase_14 AC 125 ms
41,280 KB
testcase_15 AC 123 ms
41,252 KB
testcase_16 AC 124 ms
41,376 KB
testcase_17 AC 125 ms
41,340 KB
testcase_18 AC 124 ms
41,536 KB
testcase_19 AC 125 ms
40,980 KB
testcase_20 WA -
testcase_21 AC 118 ms
39,824 KB
testcase_22 AC 121 ms
41,368 KB
testcase_23 AC 126 ms
41,132 KB
testcase_24 AC 126 ms
41,144 KB
testcase_25 AC 124 ms
41,284 KB
testcase_26 AC 128 ms
41,240 KB
testcase_27 WA -
testcase_28 AC 113 ms
40,056 KB
testcase_29 AC 123 ms
41,132 KB
testcase_30 AC 121 ms
40,820 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main{
	
	public static void main(String[] args)
	{
	    Scanner sc = new Scanner(System.in);

	    String input = sc.nextLine();
	    String[] inputArr = input.split(" ");
	    int a = Integer.parseInt(inputArr[0]);
	    int b = Integer.parseInt(inputArr[1]);

	    boolean bySelf = (Math.abs(a) % 100 == 0 && Math.abs(b) % 100 == 0);

	    int ans = a * b;

	    if (bySelf) {
	        ans /= 10;
	    } else {
	        if (-99999999 > ans || ans >= 99999999){
	            ans = -1;
	        }
	    }

	    String ansStr = ans == -1 ? "E" : ans+"";

	    System.out.println(ansStr);
	}
}
0