結果

問題 No.471 直列回転機
ユーザー nebukuro09nebukuro09
提出日時 2016-12-25 16:24:33
言語 D
(dmd 2.106.1)
結果
WA  
実行時間 -
コード長 757 bytes
コンパイル時間 715 ms
コンパイル使用メモリ 119,760 KB
実行使用メモリ 26,416 KB
平均クエリ数 19588.39
最終ジャッジ日時 2024-06-12 06:04:24
合計ジャッジ時間 16,493 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 21 ms
25,452 KB
testcase_02 AC 20 ms
25,580 KB
testcase_03 WA -
testcase_04 AC 21 ms
24,940 KB
testcase_05 AC 23 ms
25,196 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 47 ms
24,556 KB
testcase_09 AC 57 ms
25,196 KB
testcase_10 AC 33 ms
24,812 KB
testcase_11 AC 151 ms
24,940 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 309 ms
25,204 KB
testcase_15 WA -
testcase_16 AC 25 ms
24,824 KB
testcase_17 AC 22 ms
25,196 KB
testcase_18 AC 22 ms
25,452 KB
testcase_19 AC 22 ms
24,556 KB
testcase_20 AC 336 ms
25,916 KB
testcase_21 AC 93 ms
25,208 KB
testcase_22 AC 307 ms
24,824 KB
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 AC 317 ms
25,208 KB
testcase_27 WA -
testcase_28 AC 192 ms
24,824 KB
testcase_29 WA -
testcase_30 AC 97 ms
25,208 KB
testcase_31 WA -
testcase_32 WA -
testcase_33 AC 214 ms
24,824 KB
testcase_34 AC 314 ms
25,192 KB
testcase_35 AC 90 ms
25,208 KB
testcase_36 WA -
testcase_37 AC 49 ms
25,196 KB
testcase_38 WA -
testcase_39 AC 118 ms
24,824 KB
testcase_40 WA -
testcase_41 WA -
testcase_42 WA -
testcase_43 AC 328 ms
25,208 KB
testcase_44 WA -
testcase_45 WA -
testcase_46 AC 236 ms
24,952 KB
testcase_47 AC 305 ms
25,208 KB
testcase_48 AC 261 ms
24,568 KB
testcase_49 AC 253 ms
25,208 KB
testcase_50 AC 295 ms
25,208 KB
testcase_51 WA -
testcase_52 WA -
testcase_53 AC 24 ms
24,812 KB
testcase_54 AC 21 ms
25,196 KB
testcase_55 AC 90 ms
24,812 KB
testcase_56 WA -
testcase_57 WA -
testcase_58 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import std.stdio, std.array, std.string, std.conv, std.algorithm;
import std.typecons, std.range, std.random, std.math, std.container;
import std.numeric, std.bigint, core.bitop;


void main() {
    int[3][3] mat;

    auto M = readln.chomp.to!int;
    auto P = M.iota.map!(_ => readln.split.map!(to!int).array).array;

    writeln("? 0 0");
    stdout.flush;
    auto dxdy = readln.split.map!(to!int).array;

    writeln("? 1 0");
    stdout.flush;
    auto C = readln.split.map!(to!int).array;

    auto cos = C[0] - dxdy[0];
    auto sin = C[1] - dxdy[1];

    writeln("!");
    foreach (p; P) {
        auto x = p[0] * cos - p[1] * sin + dxdy[0];
        auto y = p[0] * sin - p[1] * cos + dxdy[1];
        writeln(x, " ", y);
    }
    stdout.flush;
}
0