結果
問題 | No.1292 パタパタ三角形 |
ユーザー | brthyyjp |
提出日時 | 2020-11-20 21:38:32 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 691 bytes |
コンパイル時間 | 173 ms |
コンパイル使用メモリ | 82,276 KB |
実行使用メモリ | 125,996 KB |
最終ジャッジ日時 | 2024-07-23 12:46:46 |
合計ジャッジ時間 | 3,144 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 38 ms
51,584 KB |
testcase_01 | AC | 37 ms
51,840 KB |
testcase_02 | AC | 37 ms
51,584 KB |
testcase_03 | WA | - |
testcase_04 | AC | 36 ms
51,840 KB |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | AC | 200 ms
121,996 KB |
testcase_13 | AC | 219 ms
122,376 KB |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
ソースコード
s = list(str(input())) S = [] for c in s: if c == 'a': S.append(0) elif c == 'b': S.append(1) else: S.append(2) S.reverse() d = set() n = len(S) cur = (0, 0, 0) d.add(cur) ans = 1 pre = -1 for i in range(n): c = S.pop() pos = [0, 0, 0] if pre != c: for i in range(3): if i != c: pos[i] = cur[i] else: pos[i] = cur[i]+1 else: for i in range(3): if i != c: pos[i] = cur[i] else: pos[i] = cur[i]-1 pos = tuple(pos) if pos not in d: ans += 1 d.add(cur) cur = pos pre = c print(ans)