結果
問題 | No.675 ドットちゃんたち |
ユーザー | rlangevin |
提出日時 | 2023-09-14 08:48:58 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 430 bytes |
コンパイル時間 | 166 ms |
コンパイル使用メモリ | 82,176 KB |
実行使用メモリ | 98,252 KB |
最終ジャッジ日時 | 2024-07-01 16:09:55 |
合計ジャッジ時間 | 3,585 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 40 ms
51,584 KB |
testcase_01 | AC | 40 ms
51,328 KB |
testcase_02 | AC | 40 ms
51,456 KB |
testcase_03 | AC | 39 ms
51,584 KB |
testcase_04 | AC | 39 ms
51,840 KB |
testcase_05 | AC | 225 ms
96,560 KB |
testcase_06 | AC | 234 ms
96,896 KB |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
ソースコード
N, px, py = map(int, input().split()) C = [] for i in range(N): C.append(list(map(int, input().split()))) C.reverse() n = 0 def rot(x, y): return y, -x ans = [] for c in C: if c[0] == 3: n = (n + 1) % 4 elif c[0] == 1: px += c[1] else: py += c[1] x, y = px, py for _ in range(n): x, y = rot(x, y) ans.append((x, y)) ans.reverse() for x, y in ans: print(x, y)