結果
| 問題 | No.581 XOR |
| コンテスト | |
| ユーザー |
Eclair1015
|
| 提出日時 | 2018-05-17 11:42:22 |
| 言語 | C++11 (gcc 15.2.0 + boost 1.89.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 119 bytes |
| 記録 | |
| コンパイル時間 | 289 ms |
| コンパイル使用メモリ | 70,344 KB |
| 実行使用メモリ | 7,716 KB |
| 最終ジャッジ日時 | 2026-03-17 07:58:51 |
| 合計ジャッジ時間 | 857 ms |
|
ジャッジサーバーID (参考情報) |
judge1_0 / judge2_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 1 |
| other | AC * 3 WA * 5 |
ソースコード
#include <iostream>
using namespace std;
int main(){
int A,C;
cin>>A;
cin>>C;
cout<<(C-A)<<endl;
return 0;
}
Eclair1015