結果

問題 No.683 Two Operations No.3
ユーザー bluemeganebluemegane
提出日時 2018-09-06 18:52:01
言語 C#(csc)
(csc 3.9.0)
結果
TLE  
実行時間 -
コード長 643 bytes
コンパイル時間 2,468 ms
コンパイル使用メモリ 102,912 KB
実行使用メモリ 828,900 KB
最終ジャッジ日時 2024-11-22 15:47:32
合計ジャッジ時間 13,548 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 23 ms
17,664 KB
testcase_01 AC 23 ms
17,920 KB
testcase_02 AC 24 ms
17,920 KB
testcase_03 AC 23 ms
17,792 KB
testcase_04 TLE -
testcase_05 MLE -
testcase_06 MLE -
testcase_07 AC 38 ms
23,648 KB
testcase_08 AC 30 ms
23,956 KB
testcase_09 MLE -
testcase_10 AC 39 ms
23,904 KB
testcase_11 AC 29 ms
25,884 KB
testcase_12 AC 28 ms
25,944 KB
testcase_13 MLE -
testcase_14 AC 37 ms
23,900 KB
testcase_15 AC 28 ms
21,680 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 (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