結果

問題 No.675 ドットちゃんたち
ユーザー cielciel
提出日時 2018-04-18 20:26:04
言語 Ruby
(3.3.0)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 295 bytes
コンパイル時間 39 ms
コンパイル使用メモリ 7,680 KB
実行使用メモリ 47,872 KB
最終ジャッジ日時 2024-06-27 04:33:38
合計ジャッジ時間 17,281 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 114 ms
12,928 KB
testcase_01 AC 108 ms
12,928 KB
testcase_02 AC 104 ms
12,800 KB
testcase_03 AC 109 ms
13,056 KB
testcase_04 AC 105 ms
12,928 KB
testcase_05 TLE -
testcase_06 TLE -
testcase_07 AC 1,960 ms
44,416 KB
testcase_08 TLE -
testcase_09 TLE -
testcase_10 TLE -
testcase_11 TLE -
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

require 'matrix'
n,x,y=gets.split.map &:to_i
a=n.times.map{
	c=gets.split.map &:to_i
	c[0]==1?Matrix[[1,0,c[1]],[0,1,0],[0,0,1]]:
	c[0]==2?Matrix[[1,0,0],[0,1,c[1]],[0,0,1]]:
	Matrix[[0,1,0],[-1,0,0],[0,0,1]]
}
(n-2).downto(0){|i|a[i]=a[i+1]*a[i]}
n.times{|i|puts (a[i]*Vector[x,y,1])[0..1]*' '}
0