結果

問題 No.471 直列回転機
ユーザー 👑 obakyanobakyan
提出日時 2019-05-05 17:47:00
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 305 ms / 3,141 ms
コード長 635 bytes
コンパイル時間 860 ms
コンパイル使用メモリ 71,364 KB
実行使用メモリ 25,592 KB
平均クエリ数 19588.39
最終ジャッジ日時 2024-06-11 10:41:34
合計ジャッジ時間 11,893 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 22 ms
24,580 KB
testcase_01 AC 21 ms
24,556 KB
testcase_02 AC 21 ms
24,800 KB
testcase_03 AC 20 ms
25,580 KB
testcase_04 AC 19 ms
25,196 KB
testcase_05 AC 20 ms
25,196 KB
testcase_06 AC 19 ms
25,196 KB
testcase_07 AC 19 ms
24,812 KB
testcase_08 AC 35 ms
24,812 KB
testcase_09 AC 43 ms
24,812 KB
testcase_10 AC 30 ms
24,812 KB
testcase_11 AC 133 ms
25,196 KB
testcase_12 AC 249 ms
25,220 KB
testcase_13 AC 260 ms
25,220 KB
testcase_14 AC 264 ms
24,836 KB
testcase_15 AC 305 ms
24,836 KB
testcase_16 AC 22 ms
25,208 KB
testcase_17 AC 22 ms
25,452 KB
testcase_18 AC 21 ms
25,196 KB
testcase_19 AC 20 ms
24,812 KB
testcase_20 AC 288 ms
25,592 KB
testcase_21 AC 70 ms
24,824 KB
testcase_22 AC 247 ms
24,824 KB
testcase_23 AC 233 ms
25,208 KB
testcase_24 AC 140 ms
25,196 KB
testcase_25 AC 67 ms
24,824 KB
testcase_26 AC 277 ms
24,824 KB
testcase_27 AC 141 ms
25,080 KB
testcase_28 AC 167 ms
25,208 KB
testcase_29 AC 187 ms
24,824 KB
testcase_30 AC 87 ms
25,196 KB
testcase_31 AC 263 ms
25,208 KB
testcase_32 AC 253 ms
25,208 KB
testcase_33 AC 182 ms
24,952 KB
testcase_34 AC 269 ms
25,080 KB
testcase_35 AC 82 ms
24,824 KB
testcase_36 AC 123 ms
25,208 KB
testcase_37 AC 46 ms
25,208 KB
testcase_38 AC 67 ms
25,208 KB
testcase_39 AC 110 ms
25,208 KB
testcase_40 AC 194 ms
24,568 KB
testcase_41 AC 275 ms
24,824 KB
testcase_42 AC 187 ms
25,208 KB
testcase_43 AC 249 ms
24,824 KB
testcase_44 AC 49 ms
25,208 KB
testcase_45 AC 175 ms
25,208 KB
testcase_46 AC 204 ms
25,208 KB
testcase_47 AC 257 ms
24,568 KB
testcase_48 AC 225 ms
24,824 KB
testcase_49 AC 209 ms
25,208 KB
testcase_50 AC 252 ms
25,208 KB
testcase_51 AC 124 ms
25,080 KB
testcase_52 AC 22 ms
24,556 KB
testcase_53 AC 22 ms
24,812 KB
testcase_54 AC 21 ms
25,196 KB
testcase_55 AC 84 ms
25,196 KB
testcase_56 AC 86 ms
25,068 KB
testcase_57 AC 67 ms
25,580 KB
testcase_58 AC 38 ms
25,196 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function ‘int main()’:
main.cpp:18:8: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   18 |   scanf("%d", &m);
      |   ~~~~~^~~~~~~~~~
main.cpp:20:10: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   20 |     scanf("%d %d", &x[i], &y[i]);
      |     ~~~~~^~~~~~~~~~~~~~~~~~~~~~~
main.cpp:24:8: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   24 |   scanf("%d %d", &a, &b);
      |   ~~~~~^~~~~~~~~~~~~~~~~
main.cpp:26:8: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   26 |   scanf("%d %d", &c, &s);
      |   ~~~~~^~~~~~~~~~~~~~~~~

ソースコード

diff #

#include <cstdio>
#include <cstdlib>
#include <cstddef>
#include <vector>
#include <algorithm>
#include <cmath>
#include <string>
#include <iostream>
#include <iomanip>
#include <numeric>

static int x[50000];
static int y[50000];

int main(void)
{
  int m;
  scanf("%d", &m);
  for(int i = 0; i < m; i++){
    scanf("%d %d", &x[i], &y[i]);
  }
  int a, b, c, s;
  printf("? 0 0\n"); fflush(stdout);
  scanf("%d %d", &a, &b);
  printf("? 1 0\n"); fflush(stdout);
  scanf("%d %d", &c, &s);
  c -= a;
  s -= b;
  printf("!\n");
  for(int i = 0; i < m; i++){
    printf("%d %d\n", c * x[i] - s * y[i] + a, s * x[i] + c * y[i] + b);
  }
}
0