結果

問題 No.722 100×100=1000
ユーザー bluemeganebluemegane
提出日時 2020-09-15 18:30:41
言語 C#(csc)
(csc 3.9.0)
結果
WA  
実行時間 -
コード長 811 bytes
コンパイル時間 1,877 ms
コンパイル使用メモリ 108,624 KB
実行使用メモリ 28,452 KB
最終ジャッジ日時 2024-06-22 01:52:53
合計ジャッジ時間 2,664 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 27 ms
23,900 KB
testcase_01 AC 27 ms
22,200 KB
testcase_02 AC 27 ms
24,104 KB
testcase_03 WA -
testcase_04 AC 27 ms
26,024 KB
testcase_05 AC 26 ms
24,024 KB
testcase_06 AC 26 ms
24,100 KB
testcase_07 AC 26 ms
23,900 KB
testcase_08 AC 25 ms
23,904 KB
testcase_09 AC 26 ms
26,160 KB
testcase_10 AC 26 ms
23,780 KB
testcase_11 AC 25 ms
24,104 KB
testcase_12 AC 26 ms
24,032 KB
testcase_13 AC 25 ms
24,028 KB
testcase_14 AC 26 ms
24,240 KB
testcase_15 AC 26 ms
26,148 KB
testcase_16 AC 26 ms
23,904 KB
testcase_17 AC 27 ms
26,012 KB
testcase_18 AC 26 ms
24,360 KB
testcase_19 WA -
testcase_20 WA -
testcase_21 AC 26 ms
24,036 KB
testcase_22 AC 27 ms
25,812 KB
testcase_23 AC 26 ms
26,016 KB
testcase_24 AC 25 ms
24,108 KB
testcase_25 AC 27 ms
24,112 KB
testcase_26 AC 27 ms
23,984 KB
testcase_27 AC 27 ms
23,900 KB
testcase_28 AC 26 ms
24,108 KB
testcase_29 AC 26 ms
24,292 KB
testcase_30 AC 27 ms
24,108 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc)
Copyright (C) Microsoft Corporation. All rights reserved.

ソースコード

diff #

using static System.Math;
using System;

public class Hello
{
    static void Main()
    {
        string[] line = Console.ReadLine().Trim().Split(' ');
        var a = int.Parse(line[0]);
        var b = int.Parse(line[1]);
        if (check(a) && check(b)) anzan(a, b);
        else dentaku(a, b);
    }
    static void dentaku(int a, int b)
    {
        long ans = a * (long)b;
        var keta = Abs(ans).ToString().Length;
        if (keta > 8) Console.WriteLine("E");
        else Console.WriteLine(ans);
    }
    static void anzan(int a, int b)
    {
        long ans = a * (long)b / 10L;
        Console.WriteLine(ans);
    }
    static bool check(int a)
    {
        a = Abs(a);
        if (a % 100 != 0) return false;
        var ap100 = a / 100;
        return (ap100 >= 1 && ap100 <= 9);
    }
}
0