結果

問題 No.722 100×100=1000
ユーザー GrenacheGrenache
提出日時 2018-09-16 18:59:36
言語 Java21
(openjdk 21)
結果
AC  
実行時間 139 ms / 2,000 ms
コード長 1,181 bytes
コンパイル時間 3,867 ms
コンパイル使用メモリ 77,880 KB
実行使用メモリ 41,612 KB
最終ジャッジ日時 2024-06-09 11:05:12
合計ジャッジ時間 9,156 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 137 ms
41,128 KB
testcase_01 AC 136 ms
41,228 KB
testcase_02 AC 135 ms
41,160 KB
testcase_03 AC 135 ms
40,896 KB
testcase_04 AC 133 ms
41,572 KB
testcase_05 AC 134 ms
41,048 KB
testcase_06 AC 135 ms
41,004 KB
testcase_07 AC 134 ms
41,400 KB
testcase_08 AC 137 ms
41,164 KB
testcase_09 AC 138 ms
41,164 KB
testcase_10 AC 138 ms
41,244 KB
testcase_11 AC 135 ms
41,040 KB
testcase_12 AC 139 ms
41,612 KB
testcase_13 AC 137 ms
41,392 KB
testcase_14 AC 134 ms
41,264 KB
testcase_15 AC 136 ms
41,184 KB
testcase_16 AC 134 ms
41,180 KB
testcase_17 AC 135 ms
41,096 KB
testcase_18 AC 134 ms
41,460 KB
testcase_19 AC 138 ms
41,424 KB
testcase_20 AC 136 ms
41,132 KB
testcase_21 AC 134 ms
41,248 KB
testcase_22 AC 139 ms
41,220 KB
testcase_23 AC 134 ms
41,316 KB
testcase_24 AC 136 ms
41,284 KB
testcase_25 AC 138 ms
41,404 KB
testcase_26 AC 136 ms
41,356 KB
testcase_27 AC 137 ms
41,248 KB
testcase_28 AC 137 ms
41,104 KB
testcase_29 AC 137 ms
41,460 KB
testcase_30 AC 138 ms
41,416 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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


public class Main_yukicoder722 {

	private static Scanner sc;
	private static Printer pr;

	private static void solve() {
		long a = sc.nextInt();
		long b = sc.nextInt();
		
		if (a == 0 || b == 0) {
			pr.println(0);
			return;
		}

		int n = 0;
		long tmpa = a;
		while (tmpa % 10 == 0) {
			n++;
			tmpa /= 10;
		}
		int m = 0;
		long tmpb = b;
		while (tmpb % 10 == 0) {
			m++;
			tmpb /= 10;
		}
		
		if (Math.abs(tmpa) < 10 && Math.abs(tmpb) < 10 && n >= 2 && m >= 2) {
			pr.print(tmpa * tmpb);
			for (int i = 0; i < n + m - 1; i++) {
				pr.print('0');
			}
			pr.println();
		} else {
			if (a * b < 100_000_000 && a * b > -100_000_000) {
				pr.println(a * b);
			} else {
				pr.println('E');
			}
		}
	}

	// ---------------------------------------------------
	public static void main(String[] args) {
		sc = new Scanner(INPUT == null ? System.in : new ByteArrayInputStream(INPUT.getBytes()));
		pr = new Printer(System.out);

		solve();

//		pr.close();
		pr.flush();
//		sc.close();
	}

	static String INPUT = null;

	private static class Printer extends PrintWriter {
		Printer(OutputStream out) {
			super(out);
		}
	}
}
0