結果

問題 No.1292 パタパタ三角形
ユーザー とりゐとりゐ
提出日時 2021-10-27 09:13:46
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 146 ms / 2,000 ms
コード長 615 bytes
コンパイル時間 615 ms
コンパイル使用メモリ 81,924 KB
実行使用メモリ 111,860 KB
最終ジャッジ日時 2024-10-07 05:35:08
合計ジャッジ時間 2,628 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,352 KB
testcase_01 AC 38 ms
52,352 KB
testcase_02 AC 36 ms
51,968 KB
testcase_03 AC 35 ms
51,968 KB
testcase_04 AC 35 ms
52,224 KB
testcase_05 AC 37 ms
51,968 KB
testcase_06 AC 36 ms
52,480 KB
testcase_07 AC 115 ms
81,720 KB
testcase_08 AC 119 ms
81,112 KB
testcase_09 AC 135 ms
108,004 KB
testcase_10 AC 145 ms
111,812 KB
testcase_11 AC 146 ms
111,860 KB
testcase_12 AC 106 ms
100,976 KB
testcase_13 AC 108 ms
101,144 KB
testcase_14 AC 57 ms
65,024 KB
testcase_15 AC 55 ms
65,280 KB
testcase_16 AC 57 ms
65,408 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

s=input()
seen=set()
x,y=0,0
seen.add((0,0))
n=len(s)
for i in s:
  if (x%3,y%3)==(0,0):
    if i=='a':x+=1
    elif i=='b':y+=1
    else:x-=1;y-=1
  elif (x%3,y%3)==(1,0):
    if i=='a':x-=1
    elif i=='b':x+=1;y+=1
    else:y-=1
  elif (x%3,y%3)==(2,1):
    if i=='a':y+=1
    elif i=='b':x-=1;y-=1
    else:x+=1
  elif (x%3,y%3)==(2,2):
    if i=='a':y-=1
    elif i=='b':x-=1
    else:x+=1;y+=1
  elif (x%3,y%3)==(1,2):
    if i=='a':x-=1;y-=1
    elif i=='b':x+=1
    else:y+=1
  elif (x%3,y%3)==(0,1):
    if i=='a':x+=1;y+=1
    elif i=='b':y-=1
    else:x-=1
  seen.add((x,y))
print(len(seen))
#print(seen)
0