結果

問題 No.581 XOR
ユーザー shi-mo
提出日時 2020-10-01 21:07:14
言語 C
(gcc 13.3.0)
結果
AC  
実行時間 1 ms / 2,000 ms
コード長 144 bytes
コンパイル時間 882 ms
コンパイル使用メモリ 26,368 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-07-07 03:53:15
合計ジャッジ時間 1,271 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 1
other AC * 8
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <stdio.h>
#include <limits.h>

int main() {
    unsigned long long a, b;
    scanf("%llu %llu\n", &a, &b);
    printf("%llu\n", a^b);
}
0