結果
問題 |
No.581 XOR
|
ユーザー |
![]() |
提出日時 | 2017-12-02 22:45:11 |
言語 | C (gcc 13.3.0) |
結果 |
AC
|
実行時間 | 1 ms / 2,000 ms |
コード長 | 171 bytes |
コンパイル時間 | 556 ms |
コンパイル使用メモリ | 27,008 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-11-28 03:55:04 |
合計ジャッジ時間 | 878 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 1 |
other | AC * 8 |
コンパイルメッセージ
main.c:3:1: warning: return type defaults to 'int' [-Wimplicit-int] 3 | main(){ | ^~~~
ソースコード
#include <stdio.h> main(){ unsigned long int A,B,C; scanf("%lu %lu", &A, &C); B = A ^ C; printf("%lu\n", B); return 0; }