結果
| 問題 | No.1511 A ? B Problem |
| コンテスト | |
| ユーザー |
Maeda
|
| 提出日時 | 2025-03-27 16:52:36 |
| 言語 | C (gcc 15.2.0) |
| 結果 |
RE
(最新)
AC
(最初)
|
| 実行時間 | - |
| コード長 | 152 bytes |
| 記録 | |
| コンパイル時間 | 47 ms |
| コンパイル使用メモリ | 35,072 KB |
| 実行使用メモリ | 5,888 KB |
| 最終ジャッジ日時 | 2026-07-23 16:58:33 |
| 合計ジャッジ時間 | 1,509 ms |
|
ジャッジサーバーID (参考情報) |
judge2_0 / judge1_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | RE * 2 |
| other | RE * 14 |
ソースコード
#include <stdio.h>
void main(void){
int a,b;
scanf("%d %d",&a,&b);
int orNum = a|b;
int andNum = a&b;
printf("%d",orNum-andNum);
}
Maeda