結果

問題 No.683 Two Operations No.3
ユーザー bluemeganebluemegane
提出日時 2018-09-06 18:53:19
言語 C#(csc)
(csc 3.9.0)
結果
TLE  
実行時間 -
コード長 652 bytes
コンパイル時間 931 ms
コンパイル使用メモリ 112,036 KB
実行使用メモリ 34,304 KB
最終ジャッジ日時 2024-11-22 15:50:17
合計ジャッジ時間 7,843 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 23 ms
22,912 KB
testcase_01 AC 21 ms
34,304 KB
testcase_02 AC 21 ms
23,040 KB
testcase_03 AC 21 ms
17,920 KB
testcase_04 TLE -
testcase_05 AC 24 ms
17,792 KB
testcase_06 AC 24 ms
17,920 KB
testcase_07 AC 23 ms
17,792 KB
testcase_08 AC 23 ms
17,664 KB
testcase_09 TLE -
testcase_10 AC 24 ms
17,664 KB
testcase_11 AC 24 ms
17,920 KB
testcase_12 AC 24 ms
17,792 KB
testcase_13 AC 24 ms
17,792 KB
testcase_14 AC 24 ms
17,792 KB
testcase_15 AC 23 ms
32,692 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc)
Copyright (C) Microsoft Corporation. All rights reserved.

ソースコード

diff #

using System;

public class Hello
{
    public static void Main()
    {
        string[] line = Console.ReadLine().Trim().Split(' ');
        var a = long.Parse(line[0]);
        var b = long.Parse(line[1]);
        Console.WriteLine(Func(a, b) ? "Yes" : "No");
    }
    public static bool Func(long a, long b)
    {
        if (b > a) Func(b, a);
        if (a == 0 | b == 0) return true;
        if (a % 2 == 1 && b % 2 == 1) return false;
        else if (a % 2 == 1 && b % 2 == 0) return Func(a - 1, b / 2);
        else if (a % 2 == 0 && b % 2 == 1) return Func(a / 2, b - 1);
        else return Func(a / 2, b - 1) | Func(a - 1, b / 2);
    }
}
0