結果
問題 | No.331 CodeRunnerでやれ |
ユーザー | maspy |
提出日時 | 2020-03-21 11:32:08 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 2,216 bytes |
コンパイル時間 | 184 ms |
コンパイル使用メモリ | 12,928 KB |
実行使用メモリ | 28,376 KB |
平均クエリ数 | 2660.18 |
最終ジャッジ日時 | 2024-07-17 03:20:52 |
合計ジャッジ時間 | 10,846 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 193 ms
27,360 KB |
testcase_01 | AC | 191 ms
27,232 KB |
testcase_02 | AC | 228 ms
27,360 KB |
testcase_03 | AC | 565 ms
27,864 KB |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | AC | 479 ms
27,616 KB |
testcase_07 | WA | - |
testcase_08 | AC | 683 ms
27,736 KB |
testcase_09 | AC | 363 ms
27,352 KB |
testcase_10 | AC | 375 ms
27,096 KB |
testcase_11 | RE | - |
testcase_12 | RE | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
ソースコード
import sys readline = sys.stdin.readline # DEBUG = True DEBUG = False class Interactive: def __init__(self): self.ques_cnt = 0 self.create_data() def create_data(self): self.grid = '#####..##..##...####' self.H = 5 self.W = 4 self.xy = 6 self.goal = 15 self.d = 2 def count_front_cells(self): INF = 20151224 if self.xy == self.goal: return 'Merry Christmas!' dx = (self.W, 1, -self.W, -1)[self.d] xy = self.xy cnt = 0 while True: xy += dx if xy == self.goal: return INF if self.grid[xy] == '#': return cnt cnt += 1 def resp_ques(self, *args): ch = args[0] if ch == 'F': dx = (self.W, 1, -self.W, -1)[self.d] n = self.count_front_cells() if n: self.xy += dx return str(n - 1) + '\n' else: return str(0) + '\n' if ch == 'L': self.d += 1 self.d %= 4 return str(self.count_front_cells()) + '\n' def resp_ans(self, *args): pass if DEBUG: interactive = Interactive() def question(*args, offset=None): if offset is None: print(*args, flush=True) else: print(offset, *args, flush=True) if DEBUG: resp = interactive.resp_ques(*args) print(resp, end='') else: resp = readline() if resp[0] == 'M': exit() return resp def answer(*args, offset=None): if offset is None: print(*args, flush=True) else: print(offset, *args, flush=True) if DEBUG: interactive.resp_ans(*args) else: exit() readline() W = 100 dx = (W, 1, -W, -1) visited = set([0]) parent = dict() parent[0] = None def dfs(v, d): visited.add(v) for _ in range(4): n = int(question('L')) d += 1 d %= 4 if not n: continue w = v + dx[d] if w in visited: continue question('F') dfs(w, d) question('F') question('L') question('L') dfs(0, 0)