結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 158 ms
25,232 KB
testcase_01 AC 162 ms
24,848 KB
testcase_02 AC 168 ms
24,592 KB
testcase_03 AC 357 ms
24,592 KB
testcase_04 AC 173 ms
24,848 KB
testcase_05 AC 175 ms
25,232 KB
testcase_06 AC 341 ms
25,232 KB
testcase_07 AC 182 ms
25,220 KB
testcase_08 AC 348 ms
25,232 KB
testcase_09 AC 197 ms
25,220 KB
testcase_10 AC 256 ms
24,580 KB
testcase_11 AC 243 ms
25,232 KB
testcase_12 AC 223 ms
24,592 KB
testcase_13 AC 228 ms
24,848 KB
testcase_14 AC 252 ms
24,592 KB
testcase_15 AC 229 ms
24,964 KB
testcase_16 AC 336 ms
25,208 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
flush = sys.stdout.flush
used = [[0]*50 for i in range(50)]
dx = [-1, 0, 1, 0]
dy = [0, -1, 0, 1]
r4 = range(4)

def dfs(x, y, di):
    for k in r4:
        s = raw_input()
        if s[0]=="M": exit(0)
        d = int(s)
        nd = (di + k) % 4
        nx = x + dx[nd]; ny = y + dy[nd]
        if d and not used[ny][nx]:
            print"F"; flush()
            used[ny][nx] = 1
            dfs(nx, ny, nd)
            input()
        print"R"; flush()
    input()
    print"B"; flush()
used[0][0] = 1
dfs(0, 0, 0)
0