結果

問題 No.675 ドットちゃんたち
ユーザー silversmithsilversmith
提出日時 2018-11-24 02:04:50
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,855 ms / 2,000 ms
コード長 506 bytes
コンパイル時間 111 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 77,380 KB
最終ジャッジ日時 2024-06-06 23:53:05
合計ジャッジ時間 19,258 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 485 ms
44,112 KB
testcase_01 AC 489 ms
44,120 KB
testcase_02 AC 488 ms
44,120 KB
testcase_03 AC 493 ms
44,248 KB
testcase_04 AC 482 ms
44,240 KB
testcase_05 AC 1,787 ms
74,448 KB
testcase_06 AC 1,786 ms
74,844 KB
testcase_07 AC 1,706 ms
72,620 KB
testcase_08 AC 1,839 ms
77,380 KB
testcase_09 AC 1,817 ms
74,960 KB
testcase_10 AC 1,855 ms
74,704 KB
testcase_11 AC 1,837 ms
74,744 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import numpy as np

N,P_x,P_y=list(map(int,input().split()))
R=[None]*N
dot=[None]*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,np.array([P_x,P_y,1]).T)

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