結果

問題 No.675 ドットちゃんたち
ユーザー H3PO4H3PO4
提出日時 2020-11-21 09:29:58
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 499 bytes
コンパイル時間 290 ms
コンパイル使用メモリ 10,936 KB
実行使用メモリ 33,296 KB
最終ジャッジ日時 2023-09-30 21:39:15
合計ジャッジ時間 4,401 ms
ジャッジサーバーID
(参考情報)
judge12 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 17 ms
7,824 KB
testcase_01 AC 16 ms
7,824 KB
testcase_02 AC 16 ms
7,748 KB
testcase_03 AC 16 ms
7,828 KB
testcase_04 AC 16 ms
7,976 KB
testcase_05 AC 378 ms
20,800 KB
testcase_06 AC 449 ms
33,296 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

N, Px, Py = map(int, input().split())
C = [tuple(map(int, input().split())) for _ in range(N)]
res = []
x, y = Px, Py
orient = ((1, 0), (0, 1), (-1, 0), (0, -1))
i = 0
for c in reversed(C):
    if c[0] == 1:
        x += orient[i][0] * c[1]
        y += orient[i][1] * c[1]
    elif c[0] == 2:
        x += orient[(i + 1) % 4][0] * c[1]
        y += orient[(i + 1) % 4][1] * c[1]
    else:
        x, y = y, -x
        i = (i - 1) % 4

    res.append((x, y))
for xy in reversed(res):
    print(*xy)
0