結果

問題 No.471 直列回転機
ユーザー 37zigen37zigen
提出日時 2016-12-27 14:34:27
言語 Java21
(openjdk 21)
結果
TLE  
実行時間 -
コード長 766 bytes
コンパイル時間 4,071 ms
コンパイル使用メモリ 78,672 KB
実行使用メモリ 88,108 KB
平均クエリ数 8437.27
最終ジャッジ日時 2024-07-16 12:03:42
合計ジャッジ時間 107,541 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 209 ms
71,436 KB
testcase_01 AC 208 ms
71,580 KB
testcase_02 AC 209 ms
71,920 KB
testcase_03 AC 193 ms
71,544 KB
testcase_04 AC 217 ms
72,232 KB
testcase_05 AC 373 ms
75,668 KB
testcase_06 AC 301 ms
75,136 KB
testcase_07 AC 360 ms
76,620 KB
testcase_08 AC 949 ms
79,784 KB
testcase_09 AC 978 ms
79,812 KB
testcase_10 AC 710 ms
80,100 KB
testcase_11 AC 2,034 ms
80,432 KB
testcase_12 TLE -
testcase_13 TLE -
testcase_14 TLE -
testcase_15 WA -
testcase_16 AC 320 ms
74,096 KB
testcase_17 AC 187 ms
70,816 KB
testcase_18 AC 190 ms
71,244 KB
testcase_19 AC 213 ms
72,348 KB
testcase_20 TLE -
testcase_21 AC 1,073 ms
79,916 KB
testcase_22 AC 3,032 ms
84,688 KB
testcase_23 AC 2,950 ms
85,000 KB
testcase_24 AC 2,241 ms
79,308 KB
testcase_25 AC 952 ms
79,696 KB
testcase_26 TLE -
testcase_27 AC 2,159 ms
81,112 KB
testcase_28 AC 2,441 ms
81,076 KB
testcase_29 AC 2,310 ms
81,404 KB
testcase_30 AC 1,281 ms
80,188 KB
testcase_31 TLE -
testcase_32 AC 2,870 ms
81,644 KB
testcase_33 AC 2,446 ms
84,464 KB
testcase_34 AC 3,041 ms
88,108 KB
testcase_35 AC 1,213 ms
80,072 KB
testcase_36 AC 1,855 ms
80,644 KB
testcase_37 AC 787 ms
79,708 KB
testcase_38 AC 1,084 ms
79,944 KB
testcase_39 AC 1,496 ms
80,848 KB
testcase_40 AC 2,474 ms
85,448 KB
testcase_41 TLE -
testcase_42 AC 2,407 ms
82,592 KB
testcase_43 TLE -
testcase_44 AC 645 ms
79,588 KB
testcase_45 AC 2,658 ms
81,696 KB
testcase_46 AC 2,710 ms
82,644 KB
testcase_47 TLE -
testcase_48 AC 2,968 ms
82,336 KB
testcase_49 AC 2,944 ms
82,796 KB
testcase_50 AC 3,086 ms
87,936 KB
testcase_51 AC 1,868 ms
79,888 KB
testcase_52 AC 384 ms
76,440 KB
testcase_53 AC 369 ms
76,352 KB
testcase_54 AC 413 ms
78,580 KB
testcase_55 AC 1,272 ms
80,248 KB
testcase_56 AC 1,043 ms
80,352 KB
testcase_57 AC 750 ms
79,112 KB
testcase_58 AC 696 ms
78,680 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();
		double[] x = new double[M];
		double[] y = new double[M];
		for (int i = 0; i < M; ++i) {
			x[i] = sc.nextDouble();
			y[i] = sc.nextDouble();
		}
		System.out.println("? 0 0");
		double dx = sc.nextDouble();
		double dy = sc.nextDouble();
		System.out.println("? 1 0");
		double cos = sc.nextDouble() - dx;
		double sin = sc.nextDouble() - dy;
		double[] nx = new double[M];
		double[] ny = new double[M];
		System.out.println("!");
		for (int i = 0; i < M; ++i) {
			nx[i] = cos * x[i] - sin * y[i] + dx;
			ny[i] = sin * x[i] + cos * y[i] + dy;
			System.out.println(nx[i]+" "+ny[i]);
		}
	}
}
0