結果

問題 No.1292 パタパタ三角形
ユーザー persimmon-persimmonpersimmon-persimmon
提出日時 2021-02-15 20:42:18
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 166 ms / 2,000 ms
コード長 488 bytes
コンパイル時間 366 ms
コンパイル使用メモリ 82,020 KB
実行使用メモリ 105,972 KB
最終ジャッジ日時 2024-07-23 12:27:03
合計ジャッジ時間 2,624 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
53,080 KB
testcase_01 AC 38 ms
52,980 KB
testcase_02 AC 38 ms
52,328 KB
testcase_03 AC 38 ms
52,424 KB
testcase_04 AC 38 ms
52,484 KB
testcase_05 AC 38 ms
53,488 KB
testcase_06 AC 39 ms
53,236 KB
testcase_07 AC 117 ms
81,764 KB
testcase_08 AC 113 ms
81,504 KB
testcase_09 AC 162 ms
102,600 KB
testcase_10 AC 166 ms
104,132 KB
testcase_11 AC 161 ms
104,352 KB
testcase_12 AC 151 ms
105,972 KB
testcase_13 AC 164 ms
103,416 KB
testcase_14 AC 89 ms
76,040 KB
testcase_15 AC 91 ms
75,864 KB
testcase_16 AC 90 ms
75,800 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

s=input()
seen={(0,0)}
sts=['a','b','c','u'] # 底辺、右にある辺、左にある辺、三角形下向き上向
now=[0,0]
for si in s:
  if si==sts[0]:
    if sts[3]=='u':
      now[1]-=1
    else:
      now[1]+=1
  else:
    if si==sts[1]:# 右に移動
      now[0]+=1
      sts[0],sts[1],sts[2]=sts[2],sts[0],sts[1]
    else:
      now[0]-=1
      sts[0],sts[1],sts[2]=sts[1],sts[2],sts[0]
  seen.add(tuple(now))
  if sts[3]=='u':sts[3]='d'
  else:sts[3]='u'


print(len(seen))


0