結果

問題 No.331 CodeRunnerでやれ
ユーザー soupesuteakasoupesuteaka
提出日時 2016-02-25 20:31:48
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 455 ms / 5,000 ms
コード長 633 bytes
コンパイル時間 163 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 27,616 KB
平均クエリ数 399.88
最終ジャッジ日時 2024-07-16 22:57:51
合計ジャッジ時間 7,478 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 207 ms
26,976 KB
testcase_01 AC 205 ms
27,192 KB
testcase_02 AC 204 ms
27,488 KB
testcase_03 AC 280 ms
27,224 KB
testcase_04 AC 202 ms
27,480 KB
testcase_05 AC 226 ms
27,480 KB
testcase_06 AC 455 ms
27,616 KB
testcase_07 AC 341 ms
27,224 KB
testcase_08 AC 453 ms
27,224 KB
testcase_09 AC 249 ms
27,224 KB
testcase_10 AC 288 ms
27,480 KB
testcase_11 AC 267 ms
27,616 KB
testcase_12 AC 376 ms
27,480 KB
testcase_13 AC 291 ms
27,224 KB
testcase_14 AC 390 ms
27,232 KB
testcase_15 AC 329 ms
27,472 KB
testcase_16 AC 433 ms
27,224 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#coding: UTF-8

import sys
import re
import itertools
from collections import deque

""" defs """

""" main """
searched_point = list( [0]*50 for _ in range(50) )
dx = [1,0,-1,0]
dy = [0,-1,0,1]

st = [[0,0,0,4]]
searched_point[0][0] = 1

while True:
	s = input()
	if (s[0]=='M'):
		break
	d = int(s)
	if (d==20151224):
		print('F')
		continue

	x,y,drct,f = el = st[-1]
	nx = x + dx[drct]
	ny = y + dy[drct]
	if (d != 0 and searched_point[ny][nx]==False):
		print('F')
		st.append([nx,ny,drct,4])
		searched_point[ny][nx]=1
	else:
		if (f==0):
			print('B')
			st.pop()
		else:
			el[2] = (drct+1) % 4
			el[3] = f-1
			print('L')
	
0