結果

問題 No.722 100×100=1000
ユーザー kohaku_kohakukohaku_kohaku
提出日時 2018-08-03 23:08:55
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 653 bytes
コンパイル時間 3,536 ms
コンパイル使用メモリ 74,476 KB
実行使用メモリ 61,484 KB
最終ジャッジ日時 2024-10-12 10:43:20
合計ジャッジ時間 9,119 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 134 ms
60,976 KB
testcase_01 AC 133 ms
54,276 KB
testcase_02 AC 133 ms
54,056 KB
testcase_03 AC 136 ms
54,096 KB
testcase_04 AC 134 ms
54,208 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 138 ms
54,168 KB
testcase_08 AC 140 ms
54,056 KB
testcase_09 AC 137 ms
54,108 KB
testcase_10 AC 138 ms
54,028 KB
testcase_11 AC 137 ms
54,080 KB
testcase_12 AC 142 ms
53,868 KB
testcase_13 TLE -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

package test;

import java.util.Scanner;

public class main {
	public static void main (String[]args) {
		Scanner sc = new Scanner(System.in);
		long a = sc.nextLong();
		long b = sc.nextLong();
		solve(a,b);
	}

	static private void solve(long a, long b) {
		long ans = a * b;
		if(check(a) && check(b)) {
			System.out.println(ans/10);
		} else {
			if(ans >= -99999999 && ans <= 99999999) {
				System.out.println(ans);
			} else {
				System.out.println("E");
			}
		}
	}

	static private boolean check(long num) {
		while(num%10 == 0) {
			num /= 10;
		}
		num = Math.abs(num);
		if(num >= 1 && num <= 9) {
			return true;
		}
		return false;
	}
}
0