結果

問題 No.331 CodeRunnerでやれ
ユーザー vwxyzvwxyz
提出日時 2023-12-26 06:59:02
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 434 ms / 5,000 ms
コード長 530 bytes
コンパイル時間 606 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 27,480 KB
平均クエリ数 455.65
最終ジャッジ日時 2024-09-27 15:00:41
合計ジャッジ時間 7,659 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 186 ms
26,848 KB
testcase_01 AC 184 ms
27,232 KB
testcase_02 AC 207 ms
26,848 KB
testcase_03 AC 434 ms
26,968 KB
testcase_04 AC 210 ms
27,480 KB
testcase_05 AC 214 ms
26,968 KB
testcase_06 AC 428 ms
26,976 KB
testcase_07 AC 348 ms
27,352 KB
testcase_08 AC 424 ms
27,096 KB
testcase_09 AC 247 ms
27,224 KB
testcase_10 AC 275 ms
26,840 KB
testcase_11 AC 244 ms
26,976 KB
testcase_12 AC 353 ms
27,224 KB
testcase_13 AC 271 ms
27,224 KB
testcase_14 AC 377 ms
26,976 KB
testcase_15 AC 300 ms
27,352 KB
testcase_16 AC 425 ms
27,224 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
sys.setrecursionlimit(10**7)

seen={(0,0)}
dx=[0,1,0,-1]
dy=[1,0,-1,0]


def solve(x,y,d):
    seen.add((x,y))
    for _ in range(4):
        le=input()
        if le=="Merry Christmas!":
            exit()
        le=int(le)
        if not (x+dx[d],y+dy[d]) in seen:
            if le:
                print("F")
                solve(x+dx[d],y+dy[d],d)
                input()
                print("B")
                input()
        print("L")
        d+=1
        d%=4

solve(0,0,0)






####
#...
#v##
#..#
####
0