結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 482 ms
44,892 KB
testcase_01 AC 476 ms
43,988 KB
testcase_02 AC 481 ms
44,504 KB
testcase_03 AC 484 ms
45,948 KB
testcase_04 AC 478 ms
46,116 KB
testcase_05 AC 1,806 ms
75,096 KB
testcase_06 AC 1,799 ms
75,096 KB
testcase_07 AC 1,743 ms
72,880 KB
testcase_08 TLE -
testcase_09 TLE -
testcase_10 AC 1,837 ms
76,528 KB
testcase_11 AC 1,846 ms
77,144 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