結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 124 ms
53,788 KB
testcase_01 AC 126 ms
53,924 KB
testcase_02 AC 128 ms
53,952 KB
testcase_03 AC 126 ms
54,068 KB
testcase_04 AC 117 ms
53,980 KB
testcase_05 AC 103 ms
52,520 KB
testcase_06 AC 110 ms
53,596 KB
testcase_07 AC 134 ms
53,808 KB
testcase_08 AC 123 ms
54,036 KB
testcase_09 AC 129 ms
53,760 KB
testcase_10 AC 133 ms
54,056 KB
testcase_11 AC 125 ms
54,500 KB
testcase_12 AC 125 ms
54,444 KB
testcase_13 AC 122 ms
53,924 KB
testcase_14 AC 126 ms
53,764 KB
testcase_15 AC 131 ms
53,728 KB
testcase_16 AC 139 ms
53,968 KB
testcase_17 AC 127 ms
53,940 KB
testcase_18 AC 126 ms
53,896 KB
testcase_19 AC 123 ms
54,092 KB
testcase_20 AC 131 ms
54,300 KB
testcase_21 AC 131 ms
53,724 KB
testcase_22 AC 122 ms
53,792 KB
testcase_23 AC 123 ms
53,796 KB
testcase_24 AC 121 ms
53,940 KB
testcase_25 AC 126 ms
54,128 KB
testcase_26 AC 122 ms
53,804 KB
testcase_27 AC 124 ms
54,424 KB
testcase_28 AC 117 ms
53,688 KB
testcase_29 AC 120 ms
53,668 KB
testcase_30 AC 124 ms
53,712 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
	public static void main(String[] args) {
		Scanner scan = new Scanner(System.in);
		String A = scan.next();
		String B = scan.next();
		scan.close();
		int cnt1 = 0;
		int cnt2 = 0;
		for(int i = 0; i < A.length(); i++) {
			if(A.charAt(i) == '0') {
				cnt1 ++;
			}
		}
		for(int i = 0; i < B.length(); i++) {
			if(B.charAt(i) == '0') {
				cnt2 ++;
			}
		}

		if(A.charAt(0) != '-' && B.charAt(0) != '-') {
			if(cnt1 >= 2 && cnt2 >= 2 && cnt1 == A.length() - 1 && cnt2 == B.length() - 1) {
				int t1 = Integer.parseInt(A.substring(0, 1));
				int t2 = Integer.parseInt(B.substring(0, 1));
				int ans = t1 * t2;
				System.out.print(ans);
				for(int i = 0; i < cnt1 + cnt2 - 1; i++) {
					System.out.print("0");
				}
				System.out.println();
			}else {
				long t1 = Integer.parseInt(A);
				long t2 = Integer.parseInt(B);
				long ans = t1 * t2;
				if(ans >= 0) {
					String k = Long.toString(ans);
					if(k.length() <= 8) {
						System.out.println(k);
					}else {
						System.out.println("E");
					}
				}
			}
		}else if(A.charAt(0) != '-' || B.charAt(0) != '-') {
			long t1 = Integer.parseInt(A);
			long t2 = Integer.parseInt(B);
			if(t1 < 0) {
				t1 = -t1;
			}
			if(t2 < 0) {
				t2 = -t2;
			}
			String A1 = Long.toString(t1);
			String B1 = Long.toString(t2);
			if(cnt1 >= 2 && cnt2 >= 2 && cnt1 == A1.length() - 1&& cnt2 == B1.length() - 1) {
				long ans = t1 * t2;
				String k = Long.toString(ans);
				k = k.substring(0, k.length() - 1);
				System.out.println("-" + k);
			}else {
				long ans = t1 * t2;
				if(ans >= 0) {
					String k = Long.toString(ans);
					if(k.length() <= 8) {
						System.out.println("-" + k);
					}else {
						System.out.println("E");
					}
				}

			}
		}else {
			if(cnt1 >= 2 && cnt2 >= 2 && cnt1 == A.length() - 2&& cnt2 == B.length() - 2) {
				int t1 = Integer.parseInt(A.substring(1, 2));
				int t2 = Integer.parseInt(B.substring(1, 2));
				int ans = t1 * t2;
				System.out.print(ans);
				for(int i = 0; i < cnt1 + cnt2 - 1; i++) {
					System.out.print("0");
				}
				System.out.println();
			}else {
				long t1 = Integer.parseInt(A);
				long t2 = Integer.parseInt(B);
				long ans = t1 * t2;
				if(ans >= 0) {
					String k = Long.toString(ans);
					if(k.length() <= 8) {
						System.out.println(k);
					}else {
						System.out.println("E");
					}
				}
			}
		}
	}
}
0