結果

問題 No.675 ドットちゃんたち
ユーザー cielciel
提出日時 2018-09-11 01:11:16
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 348 bytes
コンパイル時間 183 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 95,632 KB
最終ジャッジ日時 2024-06-11 15:38:09
合計ジャッジ時間 19,438 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 538 ms
44,348 KB
testcase_01 AC 520 ms
44,096 KB
testcase_02 AC 530 ms
44,220 KB
testcase_03 AC 526 ms
44,224 KB
testcase_04 AC 520 ms
43,840 KB
testcase_05 AC 1,929 ms
89,500 KB
testcase_06 TLE -
testcase_07 AC 1,903 ms
87,924 KB
testcase_08 AC 1,985 ms
89,404 KB
testcase_09 AC 1,995 ms
94,328 KB
testcase_10 AC 1,969 ms
95,632 KB
testcase_11 AC 1,984 ms
92,604 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys,numpy
f=lambda:sys.stdin.readline().split()
n,x,y=map(int,f())
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 f()]for _ in[0]*n]]
for i in range(n-2,-1,-1):a[i]=numpy.dot(a[i+1],a[i])
for e in a:print(' '.join(map(str,numpy.dot(e,[x,y,1])[:2])))
0