結果

問題 No.8060 サンプルケース至上主義
ユーザー pockyny
提出日時 2020-04-01 21:35:47
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
WA  
実行時間 -
コード長 132 bytes
コンパイル時間 946 ms
コンパイル使用メモリ 65,536 KB
最終ジャッジ日時 2025-01-09 11:45:02
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample WA * 5
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <string>

using namespace std;
int main(){
    int a,b;
    cin >> a >> b;
    cout << (a^b) << endl;
}
0