結果
問題 | No.683 Two Operations No.3 |
ユーザー | bluemegane |
提出日時 | 2018-09-06 18:44:31 |
言語 | C#(csc) (csc 3.9.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 643 bytes |
コンパイル時間 | 923 ms |
コンパイル使用メモリ | 103,424 KB |
実行使用メモリ | 34,304 KB |
最終ジャッジ日時 | 2024-11-22 15:07:10 |
合計ジャッジ時間 | 25,921 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 23 ms
34,176 KB |
testcase_01 | AC | 23 ms
23,040 KB |
testcase_02 | AC | 22 ms
23,040 KB |
testcase_03 | AC | 22 ms
23,168 KB |
testcase_04 | TLE | - |
testcase_05 | TLE | - |
testcase_06 | TLE | - |
testcase_07 | AC | 23 ms
33,920 KB |
testcase_08 | TLE | - |
testcase_09 | TLE | - |
testcase_10 | AC | 23 ms
23,040 KB |
testcase_11 | AC | 22 ms
23,040 KB |
testcase_12 | TLE | - |
testcase_13 | TLE | - |
testcase_14 | AC | 23 ms
34,304 KB |
testcase_15 | TLE | - |
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc) Copyright (C) Microsoft Corporation. All rights reserved.
ソースコード
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) 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); } }