結果

問題 No.939 and or
ユーザー ianCK
提出日時 2019-12-10 04:12:44
言語 C++11(廃止可能性あり)
(gcc 13.3.0)
結果
WA  
実行時間 -
コード長 224 bytes
コンパイル時間 134 ms
コンパイル使用メモリ 22,528 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-06-23 15:24:04
合計ジャッジ時間 1,121 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 25 WA * 5
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function ‘int main()’:
main.cpp:9:14: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
    9 |         scanf("%d%d", &a, &b);
      |         ~~~~~^~~~~~~~~~~~~~~~

ソースコード

diff #

#include <stdio.h>

long long int cnt(int x) {
	return 1 << (x - 1);
}

int main() {
	int a, b;
	scanf("%d%d", &a, &b);
	if ((a & b) != a) printf("0\n");
	else printf("%lld\n", cnt(__builtin_popcount(a ^ b)));
}
0