結果

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

ソースコード

diff #

#include <stdio.h>

long long int cnt(int x) {
	if (x == 0) return 1;
	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