結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,352 KB
testcase_01 AC 44 ms
52,480 KB
testcase_02 AC 43 ms
52,608 KB
testcase_03 AC 41 ms
52,480 KB
testcase_04 AC 43 ms
52,480 KB
testcase_05 AC 233 ms
97,024 KB
testcase_06 AC 239 ms
95,388 KB
testcase_07 AC 240 ms
95,256 KB
testcase_08 AC 258 ms
97,976 KB
testcase_09 AC 261 ms
97,692 KB
testcase_10 AC 253 ms
96,696 KB
testcase_11 AC 253 ms
97,020 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