結果

問題 No.675 ドットちゃんたち
ユーザー H3PO4H3PO4
提出日時 2020-11-21 09:14:48
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 398 bytes
コンパイル時間 167 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 34,560 KB
最終ジャッジ日時 2024-07-23 15:26:12
合計ジャッジ時間 6,230 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

N, Px, Py = map(int, input().split())
C = [tuple(map(int, input().split())) for _ in range(N)]
res = []
cur = complex(Px, Py)
orient = 1
for c in reversed(C):
    if c[0] == 1:
        cur += c[1] * orient
    elif c[0] == 2:
        cur += c[1] * 1j * orient
    else:
        cur *= -1j
        orient *= -1j

    res.append((cur.real, cur.imag))
for xy in reversed(res):
    print(*map(int, xy))
0