結果
問題 | No.522 Make Test Cases(テストケースを作る) |
ユーザー |
|
提出日時 | 2017-06-24 20:25:01 |
言語 | C90 (gcc 12.3.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 94 bytes |
コンパイル時間 | 186 ms |
コンパイル使用メモリ | 19,712 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-10-04 03:01:56 |
合計ジャッジ時間 | 2,778 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | WA * 11 |
コンパイルメッセージ
main.c:1:1: warning: data definition has no type or storage class 1 | i,j;main(n){for(scanf("%d",&n);i++<n;)for(j=i;j++<n;)j<n-i-j&&printf("%d %d %d\n",i,j,n-i-j);} | ^ main.c:1:1: warning: type defaults to ‘int’ in declaration of ‘i’ [-Wimplicit-int] main.c:1:3: warning: type defaults to ‘int’ in declaration of ‘j’ [-Wimplicit-int] 1 | i,j;main(n){for(scanf("%d",&n);i++<n;)for(j=i;j++<n;)j<n-i-j&&printf("%d %d %d\n",i,j,n-i-j);} | ^ main.c:1:5: warning: return type defaults to ‘int’ [-Wimplicit-int] 1 | i,j;main(n){for(scanf("%d",&n);i++<n;)for(j=i;j++<n;)j<n-i-j&&printf("%d %d %d\n",i,j,n-i-j);} | ^~~~ main.c: In function ‘main’: main.c:1:5: warning: type of ‘n’ defaults to ‘int’ [-Wimplicit-int] main.c:1:17: warning: implicit declaration of function ‘scanf’ [-Wimplicit-function-declaration] 1 | i,j;main(n){for(scanf("%d",&n);i++<n;)for(j=i;j++<n;)j<n-i-j&&printf("%d %d %d\n",i,j,n-i-j);} | ^~~~~ main.c:1:1: note: include ‘<stdio.h>’ or provide a declaration of ‘scanf’ +++ |+#include <stdio.h> 1 | i,j;main(n){for(scanf("%d",&n);i++<n;)for(j=i;j++<n;)j<n-i-j&&printf("%d %d %d\n",i,j,n-i-j);} main.c:1:17: warning: incompatible implicit declaration of built-in function ‘scanf’ [-Wbuiltin-declaration-mismatch] 1 | i,j;main(n){for(scanf("%d",&n);i++<n;)for(j=i;j++<n;)j<n-i-j&&printf("%d %d %d\n",i,j,n-i-j);} | ^~~~~ main.c:1:17: note: include ‘<stdio.h>’ or provide a declaration of ‘scanf’ main.c:1:63: warning: implicit declaration of function ‘printf’ [-Wimplicit-function-declaration] 1 | i,j;main(n){for(scanf("%d",&n);i++<n;)for(j=i;j++<n;)j<n-i-j&&printf("%d %d %d\n",i,j,n-i-j);} | ^~~~~~ main.c:1:63: note: include ‘<stdio.h>’ or provide a declaration of ‘printf’ main.c:1:63: warning: incompatible implicit declaration of built-in functi
ソースコード
i,j;main(n){for(scanf("%d",&n);i++<n;)for(j=i;j++<n;)j<n-i-j&&printf("%d %d %d\n",i,j,n-i-j);}