結果
問題 | No.1292 パタパタ三角形 |
ユーザー | tktk_snsn |
提出日時 | 2020-11-20 22:19:41 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 521 bytes |
コンパイル時間 | 350 ms |
コンパイル使用メモリ | 12,544 KB |
実行使用メモリ | 44,140 KB |
最終ジャッジ日時 | 2024-07-23 13:15:04 |
合計ジャッジ時間 | 3,322 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 29 ms
10,368 KB |
testcase_01 | AC | 29 ms
10,624 KB |
testcase_02 | AC | 29 ms
10,496 KB |
testcase_03 | AC | 29 ms
10,624 KB |
testcase_04 | AC | 28 ms
10,624 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 | 277 ms
44,140 KB |
testcase_13 | AC | 281 ms
43,920 KB |
testcase_14 | AC | 155 ms
11,136 KB |
testcase_15 | AC | 166 ms
11,136 KB |
testcase_16 | AC | 193 ms
10,880 KB |
ソースコード
S = input() da = [1, 0] db = [0, 1] dc = [-1, -1] nx = 0 ny = 0 memo = set() memo.add((nx, ny)) for s in S: if s == "a": dx, dy = da da[0] *= -1 db[0] *= -1 dc[0] *= -1 elif s == "b": dx, dy = db da[1] *= -1 db[1] *= -1 dc[1] *= -1 else: dx, dy = dc da[0] *= -1 db[0] *= -1 dc[0] *= -1 da[1] *= -1 db[1] *= -1 dc[1] *= -1 nx += dx ny += dy memo.add((nx, ny)) print(len(memo))