結果
問題 | No.581 XOR |
ユーザー | tsuishi |
提出日時 | 2021-01-15 11:49:18 |
言語 | C (gcc 12.3.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 368 bytes |
コンパイル時間 | 1,511 ms |
コンパイル使用メモリ | 27,520 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-05-04 03:06:44 |
合計ジャッジ時間 | 998 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 0 ms
5,248 KB |
testcase_01 | AC | 0 ms
5,376 KB |
testcase_02 | AC | 0 ms
5,376 KB |
testcase_03 | AC | 1 ms
5,376 KB |
testcase_04 | AC | 1 ms
5,376 KB |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | AC | 1 ms
5,376 KB |
testcase_08 | AC | 1 ms
5,376 KB |
コンパイルメッセージ
main.c: In function 'read1': main.c:1:21: warning: implicit declaration of function 'getchar' [-Wimplicit-function-declaration] 1 | #define mygc(c) (c)=getchar() | ^~~~~~~ main.c:2:50: note: in expansion of macro 'mygc' 2 | static void read1(int *x){int k,m=0;*x=0;for(;;){mygc(k);if(k=='-'){m=1;break;}if('0'<=k&&k<='9'){*x=k-'0';break;}}for(;;){mygc(k);if(k<'0'||k>'9')break;*x=(*x)*10+k-'0';}if(m)(*x)=-(*x);} | ^~~~ main.c:1:1: note: 'getchar' is defined in header '<stdio.h>'; did you forget to '#include <stdio.h>'? +++ |+#include <stdio.h> 1 | #define mygc(c) (c)=getchar() main.c: In function 'main': main.c:9:9: warning: implicit declaration of function 'printf' [-Wimplicit-function-declaration] 9 | printf("%d\n", a ^ c ); | ^~~~~~ main.c:9:9: note: include '<stdio.h>' or provide a declaration of 'printf' main.c:9:9: warning: incompatible implicit declaration of built-in function 'printf' [-Wbuiltin-declaration-mismatch] main.c:9:9: note: include '<stdio.h>' or provide a declaration of 'printf'
ソースコード
#define mygc(c) (c)=getchar() static void read1(int *x){int k,m=0;*x=0;for(;;){mygc(k);if(k=='-'){m=1;break;}if('0'<=k&&k<='9'){*x=k-'0';break;}}for(;;){mygc(k);if(k<'0'||k>'9')break;*x=(*x)*10+k-'0';}if(m)(*x)=-(*x);} static void read2(int *x, int *y){read1(x);read1(y);} int main(void) { int a,c; read2( &a, &c ); printf("%d\n", a ^ c ); return 0; }