結果
問題 | No.939 and or |
ユーザー | bluemegane |
提出日時 | 2021-04-26 14:31:15 |
言語 | C#(csc) (csc 3.9.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,046 bytes |
コンパイル時間 | 3,232 ms |
コンパイル使用メモリ | 112,064 KB |
実行使用メモリ | 29,492 KB |
最終ジャッジ日時 | 2024-07-04 23:26:52 |
合計ジャッジ時間 | 2,841 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 27 ms
24,796 KB |
testcase_01 | AC | 25 ms
23,900 KB |
testcase_02 | WA | - |
testcase_03 | AC | 26 ms
24,028 KB |
testcase_04 | AC | 27 ms
25,004 KB |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | AC | 24 ms
21,816 KB |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | AC | 24 ms
24,088 KB |
testcase_17 | AC | 27 ms
23,220 KB |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | AC | 24 ms
23,984 KB |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | WA | - |
testcase_28 | WA | - |
testcase_29 | WA | - |
testcase_30 | AC | 24 ms
25,812 KB |
testcase_31 | WA | - |
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc) Copyright (C) Microsoft Corporation. All rights reserved.
ソースコード
using static System.Math; using System; public class Hello { public static long a, b; static void Main() { string[] line = Console.ReadLine().Trim().Split(' '); a = long.Parse(line[0]); b = long.Parse(line[1]); getAns(); } static bool check(long t, int p) => ((t >> p) & 1) == 1; static void getAns() { var imax = countBIT(Max(a, b)); var count = 0; for (int i = 0; i < imax; i++) { if (check(a, i) && !check(b, i)) { Console.WriteLine(0); return; } if (!check(a, i) && check(b, i)) count++; } Console.WriteLine(Pow(2, count - 1)); } static int countBIT(long bits) { bits = (bits & 0x55555555) + (bits >> 1 & 0x55555555); bits = (bits & 0x33333333) + (bits >> 2 & 0x33333333); bits = (bits & 0x0f0f0f0f) + (bits >> 4 & 0x0f0f0f0f); bits = (bits & 0x00ff00ff) + (bits >> 8 & 0x00ff00ff); return (int)(bits & 0x0000ffff) + (int)(bits >> 16 & 0x0000ffff); } }