結果

問題 No.722 100×100=1000
ユーザー bluemeganebluemegane
提出日時 2020-09-15 17:46:53
言語 C#(csc)
(csc 3.9.0)
結果
WA  
実行時間 -
コード長 807 bytes
コンパイル時間 1,622 ms
コンパイル使用メモリ 110,212 KB
実行使用メモリ 26,288 KB
最終ジャッジ日時 2024-06-22 01:51:03
合計ジャッジ時間 3,109 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 21 ms
23,980 KB
testcase_01 AC 21 ms
21,940 KB
testcase_02 AC 23 ms
24,164 KB
testcase_03 AC 22 ms
24,240 KB
testcase_04 AC 21 ms
24,240 KB
testcase_05 AC 21 ms
23,904 KB
testcase_06 AC 21 ms
25,944 KB
testcase_07 WA -
testcase_08 AC 22 ms
26,280 KB
testcase_09 AC 22 ms
23,980 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 21 ms
24,032 KB
testcase_13 AC 21 ms
26,264 KB
testcase_14 AC 22 ms
24,164 KB
testcase_15 AC 21 ms
24,036 KB
testcase_16 AC 21 ms
26,288 KB
testcase_17 AC 21 ms
24,036 KB
testcase_18 AC 21 ms
26,152 KB
testcase_19 AC 20 ms
23,940 KB
testcase_20 AC 21 ms
24,028 KB
testcase_21 AC 22 ms
26,200 KB
testcase_22 AC 22 ms
24,160 KB
testcase_23 AC 23 ms
26,196 KB
testcase_24 AC 21 ms
24,240 KB
testcase_25 AC 21 ms
26,148 KB
testcase_26 AC 21 ms
23,964 KB
testcase_27 WA -
testcase_28 AC 23 ms
26,072 KB
testcase_29 AC 21 ms
21,940 KB
testcase_30 AC 21 ms
24,112 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 * 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