結果

問題 No.1511 A ? B Problem
ユーザー Schnee
提出日時 2022-01-02 22:29:39
言語 C
(gcc 13.3.0)
結果
AC  
実行時間 2 ms / 2,000 ms
コード長 213 bytes
コンパイル時間 232 ms
コンパイル使用メモリ 27,776 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-10-12 03:06:59
合計ジャッジ時間 963 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 14
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <stdio.h>
#include <stdlib.h>

int main(void){
    char buf[10];
    int a,b;
    
    fgets(buf, sizeof(buf), stdin);
    sscanf(buf, "%d %d", &a, &b);
    
    printf("%d\n", a^b);
    
    return 0;
}
0