結果

問題 No.675 ドットちゃんたち
ユーザー silversmithsilversmith
提出日時 2018-11-24 02:19:55
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 1,980 ms / 2,000 ms
コード長 512 bytes
コンパイル時間 240 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 77,388 KB
最終ジャッジ日時 2024-12-24 19:01:33
合計ジャッジ時間 18,326 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 556 ms
44,504 KB
testcase_01 AC 564 ms
44,624 KB
testcase_02 AC 565 ms
44,240 KB
testcase_03 AC 558 ms
44,240 KB
testcase_04 AC 566 ms
44,624 KB
testcase_05 AC 1,920 ms
76,992 KB
testcase_06 AC 1,980 ms
77,388 KB
testcase_07 AC 1,811 ms
70,736 KB
testcase_08 AC 1,936 ms
74,964 KB
testcase_09 AC 1,950 ms
77,028 KB
testcase_10 AC 1,933 ms
74,572 KB
testcase_11 AC 1,963 ms
74,572 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import numpy as np

N,P_x,P_y=list(map(int,input().split()))
R=[None]*N
dot=[np.array([P_x,P_y,1]).T]*N
for i in range(N):
	ope=list(map(int,input().split()))
	if ope[0]==1:
		R[i]=np.array([[1,0,ope[1]],[0,1,0],[0,0,1]])
	elif ope[0]==2:
		R[i]=np.array([[1,0,0],[0,1,ope[1]],[0,0,1]])
	else:
		R[i]=np.array([[0,1,0],[-1,0,0],[0,0,1]])

ope=np.eye(3)
for i in range(N):
	ope=np.dot(ope,R[N-1-i])
	dot[N-1-i]=np.dot(ope,dot[N-1-i])

for i in range(N):
	print(str(int(dot[i].T[0])) + " " + str(int(dot[i].T[1])))
0