結果

問題 No.675 ドットちゃんたち
ユーザー maspymaspy
提出日時 2020-01-06 11:09:57
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,620 ms / 2,000 ms
コード長 677 bytes
コンパイル時間 154 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 58,452 KB
最終ジャッジ日時 2024-11-22 23:51:41
合計ジャッジ時間 16,283 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 498 ms
43,980 KB
testcase_01 AC 503 ms
44,488 KB
testcase_02 AC 510 ms
44,108 KB
testcase_03 AC 519 ms
43,980 KB
testcase_04 AC 506 ms
43,852 KB
testcase_05 AC 1,586 ms
52,184 KB
testcase_06 AC 1,542 ms
58,312 KB
testcase_07 AC 1,517 ms
55,756 KB
testcase_08 AC 1,604 ms
54,616 KB
testcase_09 AC 1,599 ms
57,680 KB
testcase_10 AC 1,606 ms
57,292 KB
testcase_11 AC 1,620 ms
58,452 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
read = sys.stdin.buffer.read
readline = sys.stdin.buffer.readline
readlines = sys.stdin.buffer.readlines

import numpy as np

N,px,py = map(int,readline().split())
CMD = readlines()

answer = []
mat = np.eye(3,dtype=np.int64)
v = np.array([px,py,1],np.int64).reshape(-1,1)
for cmd in CMD[::-1]:
    t,*data = map(int,cmd.split())
    if t == 3:
        mat[:2,:2] = np.dot(mat[:2,:2], np.array([[0,1],[-1,0]],np.int64))
    elif t == 1:
        d = data[0]
        mat[:,2] += d * mat[:,0]
    elif t == 2:
        d = data[0]
        mat[:,2] += d * mat[:,1]
    x,y = np.dot(mat,v).ravel()[:2]
    answer.append('{} {}'.format(x,y))

print('\n'.join(answer[::-1]))
0