結果
問題 | No.1292 パタパタ三角形 |
ユーザー | 👑 Kazun |
提出日時 | 2020-11-20 21:37:43 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 517 bytes |
コンパイル時間 | 228 ms |
コンパイル使用メモリ | 82,424 KB |
実行使用メモリ | 102,452 KB |
最終ジャッジ日時 | 2024-07-23 12:46:28 |
合計ジャッジ時間 | 1,804 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 36 ms
52,432 KB |
testcase_01 | AC | 35 ms
53,200 KB |
testcase_02 | AC | 38 ms
53,068 KB |
testcase_03 | AC | 38 ms
53,040 KB |
testcase_04 | AC | 38 ms
53,152 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 | 99 ms
102,452 KB |
testcase_13 | AC | 98 ms
102,220 KB |
testcase_14 | AC | 59 ms
65,184 KB |
testcase_15 | WA | - |
testcase_16 | AC | 58 ms
66,332 KB |
ソースコード
S=input();N=len(S) X={(0,0)} u,d,l,r="a","*","b","c" x,y=0,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 elif (x+y)%2==1: 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))