結果

問題 No.331 CodeRunnerでやれ
ユーザー nebukuro09nebukuro09
提出日時 2016-10-27 00:19:50
言語 Python2
(2.7.18)
結果
AC  
実行時間 411 ms / 5,000 ms
コード長 1,135 bytes
コンパイル時間 52 ms
コンパイル使用メモリ 7,040 KB
実行使用メモリ 25,232 KB
平均クエリ数 409.06
最終ジャッジ日時 2024-07-17 00:34:45
合計ジャッジ時間 5,774 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 160 ms
24,592 KB
testcase_01 AC 160 ms
24,976 KB
testcase_02 AC 171 ms
25,232 KB
testcase_03 AC 209 ms
24,976 KB
testcase_04 AC 168 ms
25,232 KB
testcase_05 AC 167 ms
24,976 KB
testcase_06 AC 357 ms
24,848 KB
testcase_07 AC 184 ms
25,220 KB
testcase_08 AC 411 ms
24,592 KB
testcase_09 AC 200 ms
24,580 KB
testcase_10 AC 267 ms
25,220 KB
testcase_11 AC 272 ms
25,232 KB
testcase_12 AC 219 ms
24,836 KB
testcase_13 AC 227 ms
24,592 KB
testcase_14 AC 249 ms
25,232 KB
testcase_15 AC 222 ms
25,220 KB
testcase_16 AC 338 ms
24,452 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

sys.setrecursionlimit(10000)

def communicate(S):
    print S
    sys.stdout.flush()
    T = raw_input()
    if T == '20151224':
        goal()
    return int(T) if T.isdigit() else T

def goal():
    print 'F'
    sys.stdout.flush()
    S = raw_input()
    while S != "Merry Christmas!":
        print 'F'
        sys.stdout.flush()
        S = raw_input()
    exit()

MAX = 20151224
visited = set()
dxdy = [(0, -1), (1, 0), (0, 1), (-1, 0)]
d = 0

def dfs(x, y, d, n):
    if n == MAX:
        goal()
    visited.add((x, y))
    if n > 0:
        dfs(x+dxdy[d][0], y+dxdy[d][1], d, communicate('F'))
    n = communicate('R')
    d = (d+1)%4
    if n > 0 and (x+dxdy[d][0], y+dxdy[d][1]) not in visited:
        dfs(x+dxdy[d][0], y+dxdy[d][1], d, communicate('F'))
    communicate('R')
    n = communicate('R')
    d = (d+2)%4
    if n > 0 and (x+dxdy[d][0], y+dxdy[d][1]) not in visited:
        dfs(x+dxdy[d][0], y+dxdy[d][1], d, communicate('F'))
    communicate('R')
    d = (d+1)%4
    communicate('B')
    return

dfs(0, 0, 0, int(raw_input()))
communicate('F')
communicate('R')
n = communicate('R')
dfs(0, 0, 2, n)
0