結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 110 ms
13,056 KB
testcase_01 AC 110 ms
12,928 KB
testcase_02 AC 110 ms
12,800 KB
testcase_03 AC 108 ms
12,928 KB
testcase_04 AC 109 ms
13,056 KB
testcase_05 TLE -
testcase_06 TLE -
testcase_07 AC 1,990 ms
47,232 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]}
s=''.dup
n.times{|i|s<<(a[i]*Vector[x,y,1])[0..1]*' '+"\n"}
puts s
0