結果

問題 No.675 ドットちゃんたち
ユーザー cielciel
提出日時 2018-09-11 01:03:18
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,609 ms / 2,000 ms
コード長 382 bytes
コンパイル時間 77 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 94,804 KB
最終ジャッジ日時 2024-06-11 15:24:14
合計ジャッジ時間 15,810 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 431 ms
43,824 KB
testcase_01 AC 434 ms
44,208 KB
testcase_02 AC 438 ms
44,076 KB
testcase_03 AC 441 ms
44,344 KB
testcase_04 AC 449 ms
43,828 KB
testcase_05 AC 1,536 ms
89,264 KB
testcase_06 AC 1,609 ms
93,732 KB
testcase_07 AC 1,467 ms
88,452 KB
testcase_08 AC 1,585 ms
89,656 KB
testcase_09 AC 1,574 ms
94,804 KB
testcase_10 AC 1,597 ms
94,252 KB
testcase_11 AC 1,599 ms
92,964 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
from numpy import*
n,x,y=map(int,sys.stdin.readline().split())
a=[[[1,0,c[1]],[0,1,0],[0,0,1]]if c[0]<2 else [[1,0,0],[0,1,c[1]],[0,0,1]]if c[0]<3 else[[0,1,0],[-1,0,0],[0,0,1]]for c in[[int(e)for e in sys.stdin.readline().split()]for _ in[0]*n]]
for i in range(n-2,-1,-1):a[i]=dot(a[i+1],a[i])
sys.stdout.writelines(' '.join(map(str,dot(e,[x,y,1])[:2]))+'\n' for e in a)
0