結果

問題 No.675 ドットちゃんたち
ユーザー threepipes_sthreepipes_s
提出日時 2018-04-14 00:00:33
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 3,769 bytes
コンパイル時間 2,422 ms
コンパイル使用メモリ 78,920 KB
実行使用メモリ 68,056 KB
最終ジャッジ日時 2023-09-09 04:52:44
合計ジャッジ時間 6,848 ms
ジャッジサーバーID
(参考情報)
judge11 / judge12
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 79 ms
54,328 KB
testcase_01 WA -
testcase_02 AC 77 ms
52,372 KB
testcase_03 AC 78 ms
52,316 KB
testcase_04 AC 77 ms
52,796 KB
testcase_05 AC 346 ms
62,116 KB
testcase_06 AC 409 ms
62,368 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.math.BigInteger;
import java.util.Arrays;

public class Main implements Runnable {
    static ContestScanner in;
    static Writer out;
    public static void main(String[] args) {
        new Thread(null, new Main(), "", 16 * 1024 * 1024).start();
    }

    public void run() {
        Main main = new Main();
        try {
            in = new ContestScanner();
            out = new Writer();
            main.solve();
            out.close();
            in.close();
        } catch (IOException e) {
            e.printStackTrace();
        }
    }

    void solve() throws IOException {
        int n = in.nextInt();
        long px = in.nextLong();
        long py = in.nextLong();
        int[] c1 = new int[n];
        int[] c2 = new int[n];
        for (int i = 0; i < n; i++) {
            c1[i] = in.nextInt();
            if (c1[i] != 3) c2[i] = in.nextInt();
        }
        long[] y = new long[n];
        long[] x = new long[n];
        int round = 0;
        long dy = 0;
        long dx = 0;
        for (int i = n - 1; i >= 0; i--) {
            if (c1[i] == 1) {
                if (round == 0) {
                    dx += c2[i];
                } else if (round == 1) {
                    dy -= c2[i];
                } else if (round == 2) {
                    dx -= c2[i];
                } else {
                    dy += c2[i];
                }
            } else if (c1[i] == 2) {
                if (round == 0) {
                    dy += c2[i];
                } else if (round == 1) {
                    dx += c2[i];
                } else if (round == 2) {
                    dy -= c2[i];
                } else {
                    dx -= c2[i];
                }
            } else {
                round += 3;
                round %= 4;
            }

            if (round == 0) {
                y[i] = dy + py;
                x[i] = dx + px;
            } else if (round == 3) {
                y[i] = - dy - px;
                x[i] = dx + py;
            } else if (round == 2) {
                y[i] = - dy - py;
                x[i] = - dx - px;
            } else {
                y[i] = dy + px;
                x[i] = - dx - py;
            }
        }
        for (int i = 0; i < n; i++) {
            out.println(x[i] + " " + y[i]);
        }
    }
}

class Writer extends PrintWriter{
    public Writer(String filename)throws IOException
    {super(new BufferedWriter(new FileWriter(filename)));}
    public Writer()throws IOException {super(System.out);}
}
class ContestScanner implements Closeable {
    private BufferedReader in;private int c=-2;
    public ContestScanner()throws IOException
    {in=new BufferedReader(new InputStreamReader(System.in));}
    public ContestScanner(String filename)throws IOException
    {in=new BufferedReader(new InputStreamReader(new FileInputStream(filename)));}
    public String nextToken()throws IOException {
        StringBuilder sb=new StringBuilder();
        while((c=in.read())!=-1&&Character.isWhitespace(c));
        while(c!=-1&&!Character.isWhitespace(c)){sb.append((char)c);c=in.read();}
        return sb.toString();
    }
    public String readLine()throws IOException{
        StringBuilder sb=new StringBuilder();if(c==-2)c=in.read();
        while(c!=-1&&c!='\n'&&c!='\r'){sb.append((char)c);c=in.read();}
        return sb.toString();
    }
    public long nextLong()throws IOException,NumberFormatException
    {return Long.parseLong(nextToken());}
    public int nextInt()throws NumberFormatException,IOException
    {return(int)nextLong();}
    public double nextDouble()throws NumberFormatException,IOException
    {return Double.parseDouble(nextToken());}
    public void close() throws IOException {in.close();}
}
0