結果

問題 No.675 ドットちゃんたち
ユーザー Kiri8128Kiri8128
提出日時 2020-09-06 17:44:26
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 225 ms / 2,000 ms
コード長 582 bytes
コンパイル時間 292 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 97,844 KB
最終ジャッジ日時 2024-05-06 21:19:00
合計ジャッジ時間 3,594 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
51,712 KB
testcase_01 AC 37 ms
52,224 KB
testcase_02 AC 37 ms
52,096 KB
testcase_03 AC 35 ms
52,352 KB
testcase_04 AC 34 ms
52,096 KB
testcase_05 AC 198 ms
97,152 KB
testcase_06 AC 211 ms
95,512 KB
testcase_07 AC 209 ms
95,104 KB
testcase_08 AC 218 ms
97,844 KB
testcase_09 AC 225 ms
97,692 KB
testcase_10 AC 216 ms
96,692 KB
testcase_11 AC 215 ms
97,272 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def mult(a, b):
    return (a[0] * b[0] - a[1] * b[1], a[0] * b[1] + a[1] * b[0])
def su(a, b):
    return (a[0] + b[0], a[1] + b[1])

N, px, py = map(int, input().split())
p = (px, py)
X = []
for _ in range(N):
    q = [int(a) for a in input().split()]
    X.append(q)
ANS = []
m = (1, 0)
d = (0, 0)
for q in X[::-1]:
    if q[0] == 1:
        r, s = (1, 0), (q[1], 0)
    elif q[0] == 2:
        r, s = (1, 0), (0, q[1])
    else:
        r, s = (0, -1), (0, 0)
    m = mult(m, r)
    d = su(mult(s, m), d)
    ANS.append(su(mult(p, m), d))

for x, y in ANS[::-1]:
    print(x, y)
0