結果
問題 |
No.337 P versus NP
|
ユーザー |
|
提出日時 | 2016-02-09 21:57:20 |
言語 | C90 (gcc 12.3.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 57 bytes |
コンパイル時間 | 89 ms |
コンパイル使用メモリ | 18,816 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-09-21 22:02:17 |
合計ジャッジ時間 | 800 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 21 WA * 2 |
コンパイルメッセージ
main.c:1:1: warning: data definition has no type or storage class 1 | n,p; | ^ main.c:1:1: warning: type defaults to ‘int’ in declaration of ‘n’ [-Wimplicit-int] main.c:1:3: warning: type defaults to ‘int’ in declaration of ‘p’ [-Wimplicit-int] 1 | n,p; | ^ main.c:2:1: warning: return type defaults to ‘int’ [-Wimplicit-int] 2 | main(){scanf("%d%d",&n,&p)>puts("!="+((!p|n)== 1));} | ^~~~ main.c: In function ‘main’: main.c:2:8: warning: implicit declaration of function ‘scanf’ [-Wimplicit-function-declaration] 2 | main(){scanf("%d%d",&n,&p)>puts("!="+((!p|n)== 1));} | ^~~~~ main.c:1:1: note: include ‘<stdio.h>’ or provide a declaration of ‘scanf’ +++ |+#include <stdio.h> 1 | n,p; main.c:2:8: warning: incompatible implicit declaration of built-in function ‘scanf’ [-Wbuiltin-declaration-mismatch] 2 | main(){scanf("%d%d",&n,&p)>puts("!="+((!p|n)== 1));} | ^~~~~ main.c:2:8: note: include ‘<stdio.h>’ or provide a declaration of ‘scanf’ main.c:2:28: warning: implicit declaration of function ‘puts’ [-Wimplicit-function-declaration] 2 | main(){scanf("%d%d",&n,&p)>puts("!="+((!p|n)== 1));} | ^~~~ main.c:2:28: note: include ‘<stdio.h>’ or provide a declaration of ‘puts’
ソースコード
n,p; main(){scanf("%d%d",&n,&p)>puts("!="+((!p|n)== 1));}