結果

問題 No.1292 パタパタ三角形
ユーザー 👑 KazunKazun
提出日時 2020-11-20 21:43:19
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 114 ms / 2,000 ms
コード長 505 bytes
コンパイル時間 275 ms
コンパイル使用メモリ 82,540 KB
実行使用メモリ 102,504 KB
最終ジャッジ日時 2024-07-23 12:49:39
合計ジャッジ時間 2,110 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,308 KB
testcase_01 AC 38 ms
52,572 KB
testcase_02 AC 40 ms
53,664 KB
testcase_03 AC 37 ms
52,096 KB
testcase_04 AC 37 ms
52,272 KB
testcase_05 AC 36 ms
52,192 KB
testcase_06 AC 37 ms
52,508 KB
testcase_07 AC 87 ms
79,800 KB
testcase_08 AC 85 ms
79,920 KB
testcase_09 AC 108 ms
98,488 KB
testcase_10 AC 108 ms
98,476 KB
testcase_11 AC 114 ms
98,472 KB
testcase_12 AC 103 ms
102,496 KB
testcase_13 AC 98 ms
102,504 KB
testcase_14 AC 56 ms
66,452 KB
testcase_15 AC 58 ms
67,184 KB
testcase_16 AC 57 ms
65,500 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

S=input();N=len(S)

X={(0,0)}
u,d,l,r="a","*","b","c"
x=y=0

for s in S:
    if (x+y)%2==0:
        if s==u:
            y+=1
            u,d=d,u
        elif s==l:
            x-=1
            u,d,l,r="*",r,u,l
        elif s==r:
            x+=1
            u,d,l,r="*",l,r,u
    else:
        if s==d:
            y-=1
            u,d=d,u
        elif s==l:
            x-=1
            u,d,l,r=r,"*",d,l
        elif s==r:
            x+=1
            u,d,l,r=l,"*",r,d
    X.add((x,y))
print(len(X))
0