結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 534 ms
44,232 KB
testcase_01 AC 531 ms
43,980 KB
testcase_02 AC 529 ms
44,088 KB
testcase_03 AC 535 ms
44,372 KB
testcase_04 AC 537 ms
43,864 KB
testcase_05 AC 1,634 ms
52,240 KB
testcase_06 AC 1,603 ms
58,312 KB
testcase_07 AC 1,525 ms
56,408 KB
testcase_08 AC 1,643 ms
54,740 KB
testcase_09 AC 1,628 ms
57,796 KB
testcase_10 AC 1,570 ms
57,552 KB
testcase_11 AC 1,652 ms
57,940 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