結果
問題 | No.581 XOR |
ユーザー |
![]() |
提出日時 | 2019-04-19 05:26:25 |
言語 | C (gcc 13.3.0) |
結果 |
AC
|
実行時間 | 1 ms / 2,000 ms |
コード長 | 179 bytes |
コンパイル時間 | 459 ms |
コンパイル使用メモリ | 27,008 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-09-22 11:21:00 |
合計ジャッジ時間 | 753 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 1 |
other | AC * 8 |
ソースコード
// yukicoder: No.581 XOR // 2019.4.19 bal4u #include <stdio.h> #include <string.h> int main() { long long A, C; scanf("%lld%lld", &A, &C); printf("%lld\n", A^C); return 0; }