結果

問題 No.1429 Simple Dowsing
ユーザー harurunharurun
提出日時 2021-03-14 15:51:04
言語 C
(gcc 12.3.0)
結果
AC  
実行時間 23 ms / 2,000 ms
コード長 386 bytes
コンパイル時間 106 ms
コンパイル使用メモリ 29,184 KB
実行使用メモリ 25,208 KB
平均クエリ数 3.00
最終ジャッジ日時 2024-07-17 10:55:39
合計ジャッジ時間 1,511 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 23 ms
25,208 KB
testcase_01 AC 23 ms
24,952 KB
testcase_02 AC 22 ms
24,824 KB
testcase_03 AC 22 ms
24,568 KB
testcase_04 AC 22 ms
24,568 KB
testcase_05 AC 22 ms
24,952 KB
testcase_06 AC 22 ms
24,824 KB
testcase_07 AC 22 ms
24,952 KB
testcase_08 AC 22 ms
24,940 KB
testcase_09 AC 22 ms
24,824 KB
testcase_10 AC 21 ms
25,208 KB
testcase_11 AC 23 ms
24,812 KB
testcase_12 AC 22 ms
24,824 KB
testcase_13 AC 22 ms
24,824 KB
testcase_14 AC 22 ms
24,824 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.c:2:1: warning: return type defaults to 'int' [-Wimplicit-int]
    2 | main(){
      | ^~~~

ソースコード

diff #

#include <stdio.h>
main(){
  printf("? 0 0\n");
  fflush(stdout);
  int d,e[101],h[101],c,r,p=0;
  scanf("%d",&d);
  for(int x=0;x<101;x++)for(int y=0;y<101;y++)if(x*x+y*y==d){
    e[p]=x;
    h[p++]=y;
  }
  c=e[0];
  d=h[0];
  printf("? %d %d\n",c,d);
  fflush(stdout);
  scanf("%d",&r);
  for(int i=0;i<p;i++)if((e[i]-c)*(e[i]-c)+(h[i]-d)*(h[i]-d)==r)printf("! %d %d\n",e[i],h[i]);
}
0