結果
| 問題 | No.522 Make Test Cases(テストケースを作る) |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2017-06-24 20:25:01 |
| 言語 | C90(gcc15) (gcc 15.2.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 94 bytes |
| 記録 | |
| コンパイル時間 | 222 ms |
| コンパイル使用メモリ | 35,512 KB |
| 最終ジャッジ日時 | 2026-02-24 00:47:02 |
|
ジャッジサーバーID (参考情報) |
judge4 / 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: In function 'main':
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: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:63: warning: incompatible implicit declaration of built-in function 'printf' [-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:63: note: include '<stdio.h>' or provide a declaration of 'printf'
ソースコード
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);}