結果
問題 |
No.581 XOR
|
ユーザー |
![]() |
提出日時 | 2018-05-17 11:42:22 |
言語 | C++11(廃止可能性あり) (gcc 13.3.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 119 bytes |
コンパイル時間 | 368 ms |
コンパイル使用メモリ | 53,596 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-06-28 13:27:26 |
合計ジャッジ時間 | 863 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
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; }