結果

問題 No.722 100×100=1000
ユーザー Mcpu3Mcpu3
提出日時 2018-08-04 11:34:04
言語 Java21
(openjdk 21)
結果
AC  
実行時間 139 ms / 2,000 ms
コード長 588 bytes
コンパイル時間 2,330 ms
コンパイル使用メモリ 74,716 KB
実行使用メモリ 54,228 KB
最終ジャッジ日時 2024-06-09 10:59:26
合計ジャッジ時間 7,412 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 127 ms
53,676 KB
testcase_01 AC 130 ms
53,912 KB
testcase_02 AC 127 ms
53,776 KB
testcase_03 AC 139 ms
54,028 KB
testcase_04 AC 137 ms
53,876 KB
testcase_05 AC 129 ms
53,852 KB
testcase_06 AC 127 ms
53,908 KB
testcase_07 AC 131 ms
53,672 KB
testcase_08 AC 131 ms
54,076 KB
testcase_09 AC 129 ms
53,948 KB
testcase_10 AC 128 ms
53,904 KB
testcase_11 AC 132 ms
53,916 KB
testcase_12 AC 127 ms
53,968 KB
testcase_13 AC 135 ms
53,776 KB
testcase_14 AC 132 ms
54,172 KB
testcase_15 AC 138 ms
53,836 KB
testcase_16 AC 135 ms
53,684 KB
testcase_17 AC 121 ms
53,676 KB
testcase_18 AC 128 ms
54,008 KB
testcase_19 AC 124 ms
53,900 KB
testcase_20 AC 129 ms
53,704 KB
testcase_21 AC 130 ms
53,724 KB
testcase_22 AC 132 ms
54,004 KB
testcase_23 AC 130 ms
54,124 KB
testcase_24 AC 130 ms
54,016 KB
testcase_25 AC 137 ms
53,744 KB
testcase_26 AC 137 ms
54,228 KB
testcase_27 AC 137 ms
53,836 KB
testcase_28 AC 136 ms
53,952 KB
testcase_29 AC 139 ms
53,744 KB
testcase_30 AC 135 ms
54,108 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

class Main{
	public static void main(String[] args) {
		Scanner stdIn=new Scanner(System.in);
		long a=stdIn.nextLong(),b=stdIn.nextLong(),c,d,f=0;
		if(a>0) c=a;
		else c=-a;
		do {
			if(c%10!=0) f++;
			c/=10;
		}while(c>9);
		if(b>0) d=b;
		else d=-b;
		do {
			if(d%10!=0) f++;
			d/=10;
		}while(d>9);
		if(a>0) c=a;
		else c=-a;
		if(b>0) d=b;
		else d=-b;
		if(100>c||100>d) f++;
		if(f>0) {
			if(a*b>=-99999999&&99999999>=a*b) System.out.print(a*b);
			else System.out.print("E");
		}
		else System.out.print(a*b/10);
	}
}
0