結果
問題 | No.331 CodeRunnerでやれ |
ユーザー | maspy |
提出日時 | 2020-03-21 11:36:34 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
AC
|
実行時間 | 459 ms / 5,000 ms |
コード長 | 2,238 bytes |
コンパイル時間 | 139 ms |
コンパイル使用メモリ | 12,800 KB |
実行使用メモリ | 27,744 KB |
平均クエリ数 | 729.41 |
最終ジャッジ日時 | 2024-07-17 02:37:42 |
合計ジャッジ時間 | 7,720 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 175 ms
27,616 KB |
testcase_01 | AC | 190 ms
27,488 KB |
testcase_02 | AC | 231 ms
27,232 KB |
testcase_03 | AC | 459 ms
27,352 KB |
testcase_04 | AC | 240 ms
27,480 KB |
testcase_05 | AC | 241 ms
27,352 KB |
testcase_06 | AC | 308 ms
27,360 KB |
testcase_07 | AC | 404 ms
27,344 KB |
testcase_08 | AC | 307 ms
27,480 KB |
testcase_09 | AC | 356 ms
27,344 KB |
testcase_10 | AC | 352 ms
27,608 KB |
testcase_11 | AC | 440 ms
27,616 KB |
testcase_12 | AC | 371 ms
27,600 KB |
testcase_13 | AC | 344 ms
27,352 KB |
testcase_14 | AC | 419 ms
27,744 KB |
testcase_15 | AC | 421 ms
27,736 KB |
testcase_16 | AC | 430 ms
27,608 KB |
ソースコード
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(self.count_front_cells()) + '\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]) 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('L') question('L') question('F') question('L') question('L') dfs(0, 0)