結果

問題 No.675 ドットちゃんたち
ユーザー yuruhiyayuruhiya
提出日時 2021-01-24 10:38:13
言語 Ruby
(3.3.0)
結果
AC  
実行時間 493 ms / 2,000 ms
コード長 366 bytes
コンパイル時間 517 ms
コンパイル使用メモリ 7,424 KB
実行使用メモリ 35,840 KB
最終ジャッジ日時 2024-06-10 18:38:52
合計ジャッジ時間 6,173 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 93 ms
12,160 KB
testcase_01 AC 88 ms
12,288 KB
testcase_02 AC 90 ms
12,160 KB
testcase_03 AC 89 ms
12,160 KB
testcase_04 AC 89 ms
12,160 KB
testcase_05 AC 444 ms
33,152 KB
testcase_06 AC 493 ms
35,840 KB
testcase_07 AC 444 ms
31,616 KB
testcase_08 AC 465 ms
33,152 KB
testcase_09 AC 487 ms
35,072 KB
testcase_10 AC 490 ms
33,792 KB
testcase_11 AC 486 ms
35,328 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

n, px, py = gets.split.map(&:to_i)
x1, x2, y1, y2, s = 1, 0, 1, 0, false
puts (1..n).map { gets.split.map(&:to_i) }.reverse.map { |a|
		case a[0]
		when 1
			x2 -= a[1]
		when 2
			y2 -= a[1]
		when 3
			x1, x2, y1, y2, s = -y1, -y2, x1, x2, !s
		end
		x, y = (px - x2) * x1, (py - y2) * y1
		x, y = y, x if s
		[x, y]
     }.reverse.map { _1.join(' ') }.join("\n")
0