結果

問題 No.1113 二つの整数 / Two Integers
ユーザー bluemeganebluemegane
提出日時 2020-09-12 16:02:39
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 25 ms / 1,000 ms
コード長 652 bytes
コンパイル時間 946 ms
コンパイル使用メモリ 112,544 KB
実行使用メモリ 26,132 KB
最終ジャッジ日時 2024-06-10 14:35:02
合計ジャッジ時間 2,217 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 24 ms
21,940 KB
testcase_01 AC 25 ms
23,772 KB
testcase_02 AC 24 ms
23,768 KB
testcase_03 AC 25 ms
26,132 KB
testcase_04 AC 24 ms
25,816 KB
testcase_05 AC 24 ms
26,004 KB
testcase_06 AC 24 ms
24,028 KB
testcase_07 AC 23 ms
26,008 KB
testcase_08 AC 24 ms
23,964 KB
testcase_09 AC 24 ms
24,112 KB
testcase_10 AC 24 ms
24,112 KB
testcase_11 AC 24 ms
22,068 KB
testcase_12 AC 24 ms
25,748 KB
testcase_13 AC 24 ms
23,952 KB
testcase_14 AC 24 ms
21,680 KB
testcase_15 AC 24 ms
25,816 KB
testcase_16 AC 23 ms
23,908 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 = long.Parse(line[0]);
        var b = long.Parse(line[1]);
        var c = Gcd(a, b);
        Console.WriteLine(check(c) ? "Odd" : "Even");
    }
    static bool check(long a)
    {
        var t = (long)Sqrt(a);
        return t * t == a | (t + 1) * (t + 1) == a;
    }
    static long Gcd(long a, long b)
    {
        if (a < b) return Gcd(b, a);
        while (b != 0)
        {
            var w = a % b;
            a = b;
            b = w;
        }
        return a;
    }
}
0