結果

問題 No.471 直列回転機
ユーザー 37zigen37zigen
提出日時 2016-12-27 14:45:03
言語 Java21
(openjdk 21)
結果
AC  
実行時間 929 ms / 3,141 ms
コード長 739 bytes
コンパイル時間 4,928 ms
コンパイル使用メモリ 79,400 KB
実行使用メモリ 71,040 KB
平均クエリ数 19588.39
最終ジャッジ日時 2024-06-11 10:36:22
合計ジャッジ時間 41,170 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 186 ms
58,712 KB
testcase_01 AC 181 ms
58,608 KB
testcase_02 AC 166 ms
58,420 KB
testcase_03 AC 167 ms
58,152 KB
testcase_04 AC 183 ms
59,140 KB
testcase_05 AC 241 ms
59,792 KB
testcase_06 AC 209 ms
58,612 KB
testcase_07 AC 235 ms
59,908 KB
testcase_08 AC 371 ms
64,696 KB
testcase_09 AC 374 ms
65,216 KB
testcase_10 AC 307 ms
64,024 KB
testcase_11 AC 598 ms
64,988 KB
testcase_12 AC 854 ms
66,320 KB
testcase_13 AC 823 ms
67,700 KB
testcase_14 AC 884 ms
67,104 KB
testcase_15 AC 929 ms
71,040 KB
testcase_16 AC 208 ms
59,432 KB
testcase_17 AC 185 ms
58,576 KB
testcase_18 AC 180 ms
58,820 KB
testcase_19 AC 189 ms
59,016 KB
testcase_20 AC 921 ms
67,300 KB
testcase_21 AC 432 ms
64,524 KB
testcase_22 AC 782 ms
67,992 KB
testcase_23 AC 792 ms
65,972 KB
testcase_24 AC 669 ms
65,972 KB
testcase_25 AC 395 ms
65,676 KB
testcase_26 AC 885 ms
67,516 KB
testcase_27 AC 645 ms
65,876 KB
testcase_28 AC 674 ms
65,572 KB
testcase_29 AC 760 ms
65,072 KB
testcase_30 AC 478 ms
65,572 KB
testcase_31 AC 920 ms
66,980 KB
testcase_32 AC 877 ms
65,172 KB
testcase_33 AC 684 ms
65,688 KB
testcase_34 AC 898 ms
68,356 KB
testcase_35 AC 448 ms
65,488 KB
testcase_36 AC 571 ms
64,108 KB
testcase_37 AC 355 ms
64,992 KB
testcase_38 AC 417 ms
65,144 KB
testcase_39 AC 537 ms
65,260 KB
testcase_40 AC 779 ms
65,440 KB
testcase_41 AC 887 ms
70,320 KB
testcase_42 AC 721 ms
65,396 KB
testcase_43 AC 825 ms
69,892 KB
testcase_44 AC 333 ms
63,992 KB
testcase_45 AC 760 ms
65,476 KB
testcase_46 AC 764 ms
66,256 KB
testcase_47 AC 846 ms
68,744 KB
testcase_48 AC 775 ms
65,352 KB
testcase_49 AC 791 ms
66,340 KB
testcase_50 AC 853 ms
66,476 KB
testcase_51 AC 580 ms
65,412 KB
testcase_52 AC 240 ms
60,024 KB
testcase_53 AC 239 ms
59,532 KB
testcase_54 AC 238 ms
61,376 KB
testcase_55 AC 449 ms
65,944 KB
testcase_56 AC 408 ms
65,876 KB
testcase_57 AC 350 ms
64,668 KB
testcase_58 AC 322 ms
64,048 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package yukicoder;

import java.util.*;

public class Q471 {
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		int M = sc.nextInt();
		int[] x = new int[M];
		int[] y = new int[M];
		for (int i = 0; i < M; ++i) {
			x[i] = sc.nextInt();
			y[i] = sc.nextInt();
		}
		System.out.println("? 0 0");
		int dx = sc.nextInt();
		int dy = sc.nextInt();
		System.out.println("? 1 0");
		int cos = sc.nextInt() - dx;
		int sin = sc.nextInt() - dy;
		System.out.println("!");
		StringBuilder sb = new StringBuilder();
		for (int i = 0; i < M; ++i) {
			int nx = cos * x[i] - sin * y[i] + dx;
			int ny = sin * x[i] + cos * y[i] + dy;
			sb.append(nx + " " + ny + "\n");
		}
		System.out.println(sb.toString());
	}
}
0