結果
問題 | No.675 ドットちゃんたち |
ユーザー | H3PO4 |
提出日時 | 2024-04-12 14:17:50 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
AC
|
実行時間 | 1,771 ms / 2,000 ms |
コード長 | 753 bytes |
コンパイル時間 | 175 ms |
コンパイル使用メモリ | 12,800 KB |
実行使用メモリ | 67,800 KB |
最終ジャッジ日時 | 2024-10-02 22:46:50 |
合計ジャッジ時間 | 16,605 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 513 ms
44,248 KB |
testcase_01 | AC | 517 ms
44,116 KB |
testcase_02 | AC | 528 ms
43,860 KB |
testcase_03 | AC | 520 ms
44,500 KB |
testcase_04 | AC | 513 ms
44,244 KB |
testcase_05 | AC | 1,706 ms
63,572 KB |
testcase_06 | AC | 1,771 ms
67,668 KB |
testcase_07 | AC | 1,617 ms
62,804 KB |
testcase_08 | AC | 1,747 ms
63,948 KB |
testcase_09 | AC | 1,731 ms
65,872 KB |
testcase_10 | AC | 1,754 ms
67,800 KB |
testcase_11 | AC | 1,742 ms
65,616 KB |
ソースコード
import numpy as np N, Px, Py = map(int, input().split()) matrices = [] matrix = np.diag(np.ones(3, dtype=np.int64)) x0 = np.array([Px, Py, 1], dtype=np.int64) C = [tuple(map(int, input().split())) for _ in range(N)] for cmd in reversed(C): if cmd[0] == 1: matr_x = np.array([[1, 0, 0], [0, 1, 0], [cmd[1], 0, 1]], dtype=np.int64) matrix = matr_x @ matrix elif cmd[0] == 2: matr_y = np.array([[1, 0, 0], [0, 1, 0], [0, cmd[1], 1]], dtype=np.int64) matrix = matr_y @ matrix elif cmd[0] == 3: matr_r = np.array([[0, -1, 0], [1, 0, 0], [0, 0, 1]], dtype=np.int64) matrix = matr_r @ matrix matrices.append(matrix) for matrix in reversed(matrices): x, y, _ = x0 @ matrix print(x, y)