結果

問題 No.1292 パタパタ三角形
ユーザー c-yanc-yan
提出日時 2020-11-26 00:10:23
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 287 ms / 2,000 ms
コード長 602 bytes
コンパイル時間 131 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 44,056 KB
最終ジャッジ日時 2024-07-23 19:34:01
合計ジャッジ時間 3,237 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,496 KB
testcase_01 AC 28 ms
10,496 KB
testcase_02 AC 28 ms
10,624 KB
testcase_03 AC 29 ms
10,624 KB
testcase_04 AC 30 ms
10,624 KB
testcase_05 AC 30 ms
10,496 KB
testcase_06 AC 30 ms
10,624 KB
testcase_07 AC 195 ms
16,688 KB
testcase_08 AC 194 ms
16,660 KB
testcase_09 AC 287 ms
42,240 KB
testcase_10 AC 276 ms
41,632 KB
testcase_11 AC 275 ms
42,464 KB
testcase_12 AC 284 ms
44,056 KB
testcase_13 AC 280 ms
44,036 KB
testcase_14 AC 147 ms
11,008 KB
testcase_15 AC 161 ms
11,008 KB
testcase_16 AC 161 ms
11,008 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

S = input()

x, y = 0, 0
t = {(0, 0)}

s0 = [(-1, 0), (0, -1), (1, 0), (-1, 0), (0, 1), (1, 0)]
s1 = [(-1, 0), (0, 1), (1, 0), (-1, 0), (0, -1), (1, 0)]

for ch in S:
    if ch == 'a':
        if y % 2 == 0:
            dx, dy = s0[x % 6]
        else:
            dx, dy = s1[x % 6]
    elif ch == 'b':
        if y % 2 == 0:
            dx, dy = s0[(x + 4) % 6]
        else:
            dx, dy = s1[(x + 4) % 6]
    elif ch == 'c':
        if y % 2 == 0:
            dx, dy = s0[(x + 2) % 6]
        else:
            dx, dy = s1[(x + 2) % 6]
    x += dx
    y += dy
    t.add((x, y))
print(len(t))
0