結果

問題 No.471 直列回転機
ユーザー 37zigen37zigen
提出日時 2016-12-27 14:37:46
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 779 bytes
コンパイル時間 3,298 ms
コンパイル使用メモリ 79,460 KB
実行使用メモリ 86,316 KB
平均クエリ数 19588.39
最終ジャッジ日時 2024-07-16 12:05:08
合計ジャッジ時間 60,205 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 194 ms
59,164 KB
testcase_01 AC 176 ms
59,104 KB
testcase_02 AC 187 ms
59,960 KB
testcase_03 AC 165 ms
59,224 KB
testcase_04 AC 193 ms
59,608 KB
testcase_05 AC 300 ms
63,732 KB
testcase_06 AC 251 ms
62,512 KB
testcase_07 AC 286 ms
64,488 KB
testcase_08 AC 609 ms
68,652 KB
testcase_09 AC 613 ms
67,996 KB
testcase_10 AC 461 ms
68,944 KB
testcase_11 AC 986 ms
69,780 KB
testcase_12 AC 1,513 ms
72,612 KB
testcase_13 AC 1,491 ms
71,636 KB
testcase_14 AC 1,454 ms
73,540 KB
testcase_15 WA -
testcase_16 AC 263 ms
72,580 KB
testcase_17 AC 166 ms
59,788 KB
testcase_18 AC 176 ms
59,808 KB
testcase_19 AC 183 ms
60,104 KB
testcase_20 AC 1,526 ms
74,116 KB
testcase_21 AC 643 ms
68,832 KB
testcase_22 AC 1,437 ms
73,092 KB
testcase_23 AC 1,406 ms
82,100 KB
testcase_24 AC 1,120 ms
70,056 KB
testcase_25 AC 613 ms
68,020 KB
testcase_26 AC 1,460 ms
73,368 KB
testcase_27 AC 1,047 ms
69,476 KB
testcase_28 AC 1,114 ms
69,976 KB
testcase_29 AC 1,170 ms
71,000 KB
testcase_30 AC 729 ms
70,208 KB
testcase_31 AC 1,606 ms
72,440 KB
testcase_32 AC 1,424 ms
71,976 KB
testcase_33 AC 1,381 ms
70,432 KB
testcase_34 AC 1,546 ms
71,992 KB
testcase_35 AC 692 ms
68,380 KB
testcase_36 AC 1,008 ms
69,448 KB
testcase_37 AC 551 ms
69,024 KB
testcase_38 AC 637 ms
68,100 KB
testcase_39 AC 855 ms
68,516 KB
testcase_40 AC 1,365 ms
71,188 KB
testcase_41 AC 1,535 ms
74,168 KB
testcase_42 AC 1,287 ms
69,400 KB
testcase_43 AC 1,444 ms
71,240 KB
testcase_44 AC 456 ms
67,160 KB
testcase_45 AC 1,271 ms
70,500 KB
testcase_46 AC 1,422 ms
70,340 KB
testcase_47 AC 1,511 ms
72,736 KB
testcase_48 AC 1,354 ms
71,060 KB
testcase_49 AC 1,252 ms
72,420 KB
testcase_50 AC 1,439 ms
72,696 KB
testcase_51 AC 953 ms
69,588 KB
testcase_52 AC 284 ms
65,032 KB
testcase_53 AC 289 ms
65,948 KB
testcase_54 AC 315 ms
64,624 KB
testcase_55 AC 739 ms
69,040 KB
testcase_56 AC 642 ms
68,996 KB
testcase_57 AC 503 ms
67,676 KB
testcase_58 AC 473 ms
79,240 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;
		System.out.println("!");
		StringBuilder sb=new StringBuilder();
		for (int i = 0; i < M; ++i) {
			double nx = cos * x[i] - sin * y[i] + dx;
			double ny = sin * x[i] + cos * y[i] + dy;
			sb.append(nx+" "+ny+"\n");
		}
		System.out.println(sb.toString());
	}
}
0