結果

問題 No.331 CodeRunnerでやれ
ユーザー tjaketjake
提出日時 2015-12-24 00:29:59
言語 Python2
(2.7.18)
結果
AC  
実行時間 387 ms / 5,000 ms
コード長 673 bytes
コンパイル時間 271 ms
コンパイル使用メモリ 6,912 KB
実行使用メモリ 25,232 KB
平均クエリ数 398.35
最終ジャッジ日時 2024-07-16 22:20:55
合計ジャッジ時間 6,630 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 169 ms
25,220 KB
testcase_01 AC 172 ms
24,848 KB
testcase_02 AC 189 ms
24,848 KB
testcase_03 AC 387 ms
24,976 KB
testcase_04 AC 182 ms
25,232 KB
testcase_05 AC 185 ms
25,232 KB
testcase_06 AC 378 ms
24,592 KB
testcase_07 AC 200 ms
24,836 KB
testcase_08 AC 379 ms
24,592 KB
testcase_09 AC 213 ms
24,580 KB
testcase_10 AC 273 ms
25,220 KB
testcase_11 AC 242 ms
24,592 KB
testcase_12 AC 242 ms
24,580 KB
testcase_13 AC 249 ms
25,232 KB
testcase_14 AC 278 ms
24,464 KB
testcase_15 AC 245 ms
24,964 KB
testcase_16 AC 357 ms
25,220 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

N = 50
flush = sys.stdout.flush

used = [[0]*N for i in xrange(N)]
dx = [-1, 0, 1, 0]
dy = [0, -1, 0, 1]

# (x, y, dir)
st = [[0, 0, 0, 4]]
used[0][0] = 1
while 1:
    s = raw_input()
    if s[0]=="M": exit(0)
    d = int(s)
    if d == 20151124:
        print"F"
        flush()
        continue
    x, y, di, f = el = st[-1]
    nx = x + dx[di]; ny = y + dy[di]
    if d and not used[ny][nx]:
        print"F"; flush()
        st.append([nx, ny, di, 4])
        used[ny][nx] = 1
    else:
        if f==0:
            print "B"; flush()
            st.pop()
        else:
            el[2] = (di + 1) % 4
            el[3] = f-1
            print"R"; flush()
0