結果

問題 No.675 ドットちゃんたち
ユーザー cande398cande398
提出日時 2018-06-18 20:29:24
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 546 bytes
コンパイル時間 180 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 27,392 KB
最終ジャッジ日時 2024-06-30 17:03:40
合計ジャッジ時間 5,336 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
10,880 KB
testcase_01 AC 29 ms
10,752 KB
testcase_02 AC 28 ms
10,880 KB
testcase_03 AC 29 ms
10,752 KB
testcase_04 AC 29 ms
10,752 KB
testcase_05 AC 517 ms
21,240 KB
testcase_06 AC 553 ms
27,392 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

command = []
rev = False
N, Px, Py = map(int, input().split())
Fx, Fy = Px, Py
for i in range(N):
	command.append(list(map(int, input().split())))
	if command[-1][0] == 1:
		Fx = Fx+command[-1][1]
	elif command[-1][0] == 2:
		Fy = Fy+command[-1][1]
	else:
		rev = not rev
		Fx, Fy = Fy, 0-Fx
for i in range(N):
	print(Fx, Fy)
	if command[i][0] == 1:
		if rev:
			Fy += command[i][1]
		else:
			Fx -= command[i][1]
	elif command[i][0] == 2:
		if rev:
			Fx -= command[i][1]
		else:
			Fy -= command[i][1]
	else:
		Fx, Fy = 0-Fy, Fx
		rev = not rev
0