結果
問題 | No.1292 パタパタ三角形 |
ユーザー | sepa38 |
提出日時 | 2023-03-29 10:07:04 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 257 ms / 2,000 ms |
コード長 | 1,216 bytes |
コンパイル時間 | 218 ms |
コンパイル使用メモリ | 82,176 KB |
実行使用メモリ | 110,800 KB |
最終ジャッジ日時 | 2024-09-21 03:51:53 |
合計ジャッジ時間 | 3,071 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 40 ms
52,352 KB |
testcase_01 | AC | 40 ms
52,224 KB |
testcase_02 | AC | 39 ms
52,352 KB |
testcase_03 | AC | 38 ms
52,224 KB |
testcase_04 | AC | 37 ms
52,352 KB |
testcase_05 | AC | 38 ms
52,608 KB |
testcase_06 | AC | 38 ms
52,864 KB |
testcase_07 | AC | 190 ms
90,304 KB |
testcase_08 | AC | 188 ms
90,624 KB |
testcase_09 | AC | 241 ms
108,800 KB |
testcase_10 | AC | 241 ms
108,844 KB |
testcase_11 | AC | 257 ms
110,800 KB |
testcase_12 | AC | 188 ms
105,536 KB |
testcase_13 | AC | 210 ms
108,896 KB |
testcase_14 | AC | 132 ms
90,792 KB |
testcase_15 | AC | 131 ms
90,864 KB |
testcase_16 | AC | 97 ms
89,984 KB |
ソースコード
s = list(map(lambda x: ord(x)-97, input())) dir = [[-1, 0], [1, 0], [0, -1]] flg = 1 now = [0, 0] st = set([tuple(now)]) for c in s: x, y = dir[c] now[0] += x now[1] += y st.add(tuple(now)) if dir[c] == [-1, 0]: if flg: for i in range(3): if dir[i] == [-1, 0]: dir[i] = [1, 0] elif dir[i] == [1, 0]: dir[i] = [0, 1] elif dir[i] == [0, -1]: dir[i] = [-1, 0] else: for i in range(3): if dir[i] == [-1, 0]: dir[i] = [1, 0] elif dir[i] == [1, 0]: dir[i] = [0, -1] elif dir[i] == [0, 1]: dir[i] = [-1, 0] elif dir[c] == [1, 0]: if flg: for i in range(3): if dir[i] == [1, 0]: dir[i] = [-1, 0] elif dir[i] == [-1, 0]: dir[i] = [0, 1] elif dir[i] == [0, -1]: dir[i] = [1, 0] else: for i in range(3): if dir[i] == [1, 0]: dir[i] = [-1, 0] elif dir[i] == [-1, 0]: dir[i] = [0, -1] elif dir[i] == [0, 1]: dir[i] = [1, 0] elif dir[c] == [0, -1]: dir[c] = [0, 1] elif dir[c] == [0, 1]: dir[c] = [0, -1] flg ^= 1 # print(now, dir) print(len(st))