結果
問題 | No.1432 Not Xor |
ユーザー |
|
提出日時 | 2021-03-23 20:30:09 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 2 ms / 2,000 ms |
コード長 | 138 bytes |
コンパイル時間 | 447 ms |
コンパイル使用メモリ | 64,212 KB |
実行使用メモリ | 6,820 KB |
最終ジャッジ日時 | 2024-11-25 21:48:16 |
合計ジャッジ時間 | 1,043 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 1 |
other | AC * 7 |
ソースコード
#include <iostream>using namespace std;typedef long long LL;int main(){LL A,B;cin>>A>>B;cout<<(A|B) + (A&B) <<endl;return 0;}