結果
| 問題 |
No.581 XOR
|
| コンテスト | |
| ユーザー |
iwltwm
|
| 提出日時 | 2018-01-07 10:25:42 |
| 言語 | C (gcc 13.3.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 142 bytes |
| コンパイル時間 | 108 ms |
| コンパイル使用メモリ | 27,264 KB |
| 実行使用メモリ | 6,820 KB |
| 最終ジャッジ日時 | 2024-12-23 09:53:51 |
| 合計ジャッジ時間 | 714 ms |
|
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | WA * 1 |
| other | AC * 1 WA * 7 |
ソースコード
/*
*No.581
*/
#include <stdio.h>
int main(void)
{
long A,B,C;
scanf("%ld%;d",&A,&C);
B=A^C;
printf("%ld\n",B);
return 0;
}
iwltwm