結果

問題 No.228 ゆきこちゃんの 15 パズル
ユーザー cielciel
提出日時 2015-06-20 02:12:43
言語 C90
(gcc 11.4.0)
結果
WA  
(最新)
AC  
(最初)
実行時間 -
コード長 178 bytes
コンパイル時間 161 ms
コンパイル使用メモリ 24,060 KB
実行使用メモリ 4,384 KB
最終ジャッジ日時 2023-09-21 10:30:34
合計ジャッジ時間 1,081 ms
ジャッジサーバーID
(参考情報)
judge14 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 0 ms
4,380 KB
testcase_02 AC 1 ms
4,380 KB
testcase_03 AC 1 ms
4,384 KB
testcase_04 AC 1 ms
4,384 KB
testcase_05 AC 0 ms
4,380 KB
testcase_06 AC 1 ms
4,384 KB
testcase_07 AC 1 ms
4,384 KB
testcase_08 AC 1 ms
4,384 KB
testcase_09 AC 0 ms
4,384 KB
testcase_10 AC 0 ms
4,380 KB
testcase_11 AC 0 ms
4,380 KB
testcase_12 AC 0 ms
4,380 KB
testcase_13 AC 0 ms
4,384 KB
testcase_14 AC 1 ms
4,380 KB
testcase_15 AC 0 ms
4,384 KB
testcase_16 AC 0 ms
4,380 KB
testcase_17 AC 1 ms
4,380 KB
testcase_18 AC 1 ms
4,384 KB
testcase_19 AC 1 ms
4,384 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.c:1:1: warning: data definition has no type or storage class
 A[15],x,y,z,k,p;main(){
 ^
main.c:1:1: warning: type defaults to ‘int’ in declaration of ‘A’ [-Wimplicit-int]
main.c:1:7: warning: type defaults to ‘int’ in declaration of ‘x’ [-Wimplicit-int]
 A[15],x,y,z,k,p;main(){
       ^
main.c:1:9: warning: type defaults to ‘int’ in declaration of ‘y’ [-Wimplicit-int]
 A[15],x,y,z,k,p;main(){
         ^
main.c:1:11: warning: type defaults to ‘int’ in declaration of ‘z’ [-Wimplicit-int]
 A[15],x,y,z,k,p;main(){
           ^
main.c:1:13: warning: type defaults to ‘int’ in declaration of ‘k’ [-Wimplicit-int]
 A[15],x,y,z,k,p;main(){
             ^
main.c:1:15: warning: type defaults to ‘int’ in declaration of ‘p’ [-Wimplicit-int]
 A[15],x,y,z,k,p;main(){
               ^
main.c:1:17: warning: return type defaults to ‘int’ [-Wimplicit-int]
 A[15],x,y,z,k,p;main(){
                 ^~~~
main.c: In function ‘main’:
main.c:2:8: warning: implicit declaration of function ‘scanf’ [-Wimplicit-function-declaration]
  for(;~scanf("%d",&k);x++)if(k)for(A[y++]=k--,p|=(abs(x/4-k/4)+abs(x%4-k%4)>1)*2,z=0;z<y-1;z++)p^=A[z]>k+1;else p^=abs(x/4-3)%2;
        ^~~~~
main.c:2:8: warning: incompatible implicit declaration of built-in function ‘scanf’
main.c:2:8: note: include ‘<stdio.h>’ or provide a declaration of ‘scanf’
+#include <stdio.h>
 A[15],x,y,z,k,p;main(){
  for(;~scanf("%d",&k);x++)if(k)for(A[y++]=k--,p|=(abs(x/4-k/4)+abs(x%4-k%4)>1)*2,z=0;z<y-1;z++)p^=A[z]>k+1;else p^=abs(x/4-3)%2;
        ^~~~~
main.c:2:51: warning: implicit declaration of function ‘abs’ [-Wimplicit-function-declaration]
  for(;~scanf("%d",&k);x++)if(k)for(A[y++]=k--,p|=(abs(x/4-k/4)+abs(x%4-k%4)>1)*2,z=0;z<y-1;z++)p^=A[z]>k+1;else p^=abs(x/4-3)%2;
                                                   ^~~
main.c:3:5: warning: implicit declaration of function ‘puts’ [-Wimplicit-function-declaration]
  x=!puts(p?"No":"Yes");
    

ソースコード

diff #

A[15],x,y,z,k,p;main(){
	for(;~scanf("%d",&k);x++)if(k)for(A[y++]=k--,p|=(abs(x/4-k/4)+abs(x%4-k%4)>1)*2,z=0;z<y-1;z++)p^=A[z]>k+1;else p^=abs(x/4-3)%2;
	x=!puts(p?"No":"Yes");
}
0