結果

問題 No.331 CodeRunnerでやれ
ユーザー りあんりあん
提出日時 2015-12-24 07:29:50
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 332 ms / 5,000 ms
コード長 7,589 bytes
コンパイル時間 2,597 ms
コンパイル使用メモリ 108,420 KB
実行使用メモリ 38,704 KB
平均クエリ数 251.65
最終ジャッジ日時 2023-09-23 22:56:11
合計ジャッジ時間 7,877 ms
ジャッジサーバーID
(参考情報)
judge15 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 181 ms
36,684 KB
testcase_01 AC 182 ms
36,428 KB
testcase_02 AC 200 ms
36,624 KB
testcase_03 AC 218 ms
38,180 KB
testcase_04 AC 202 ms
37,004 KB
testcase_05 AC 197 ms
36,548 KB
testcase_06 AC 210 ms
36,868 KB
testcase_07 AC 230 ms
34,560 KB
testcase_08 AC 201 ms
38,704 KB
testcase_09 AC 313 ms
36,244 KB
testcase_10 AC 287 ms
36,908 KB
testcase_11 AC 225 ms
38,664 KB
testcase_12 AC 248 ms
38,464 KB
testcase_13 AC 268 ms
38,408 KB
testcase_14 AC 287 ms
36,784 KB
testcase_15 AC 300 ms
36,676 KB
testcase_16 AC 332 ms
38,096 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

using System;
using System.Collections.Generic;
using System.Linq;
using System.IO;
using System.IO.Compression;
using System.Text;
//using System.Numerics;

namespace Solver
{
    class Program
    {
        const int M = 1000000007;
        const double eps = 1e-9;
        static int[] dd = { 0, 1, 0, -1, 0 };
        static void Main()
        {
//            var sw = new System.IO.StreamWriter(Console.OpenStandardOutput()) { AutoFlush = false };
//            var sc = new Scan();
            if (migite())
                return;
            if (hidarite())
                return;
            if (migite())
                return;
        }
        static bool migite()
        {
            var sc = new Scan();
            int n;
            var s = sc.Str;
            var vis = new bool[50][][];
            for (int i = 0; i < 50; i++)
            {
                vis[i] = new bool[50][];
                for (int j = 0; j < 50; j++)
                    vis[i][j] = new bool[4];
            }
            if (!int.TryParse(s, out n)) return true;
            Console.WriteLine('R');

            if (init()) return true;

            Console.WriteLine('L');

            int x = 25, y = 25, d = 0;
            vis[x][y][d] = true;
            while (true)
            {
                if (move('R', ref x, ref y, ref d))
                    return true;

                if (vis[x][y][d])
                    return false;

                vis[x][y][d] = true;
            }
        }
        static bool hidarite()
        {
            var sc = new Scan();
            int n;
            var s = sc.Str;
            var vis = new bool[50][][];
            for (int i = 0; i < 50; i++)
            {
                vis[i] = new bool[50][];
                for (int j = 0; j < 50; j++)
                    vis[i][j] = new bool[4];
            }
            if (!int.TryParse(s, out n)) return true;
            Console.WriteLine('L');

            if (init()) return true;

            Console.WriteLine('R');

            int x = 25, y = 25, d = 0;
            vis[x][y][d] = true;
            while (true)
            {
                if (move('L', ref x, ref y, ref d))
                    return true;

                if (vis[x][y][d])
                    return false;

                vis[x][y][d] = true;
            }
        }

        static bool init()
        {
            var sc = new Scan();
            while (true)
            {
                var s = sc.Str;
                int n;
                if (!int.TryParse(s, out n)) return true;

                if (n == 0) return false;

                Console.WriteLine('F');
            }

        }
        static bool move(char c, ref int x, ref int y, ref int d)
        {
            var sc = new Scan();
            int n;
            var s = sc.Str;
            var dd = new int[] { 0, 1, 0, -1, 0 };
            if (!int.TryParse(s, out n)) return true;

            if (n == 0)
            {
                Console.WriteLine((c == 'R') ? 'L' : 'R');
                d = (d + ((c == 'R') ? 3 : 1)) % 4;
                return false;
            }
            if (n == 20151224)
            {
                Console.WriteLine('F');
                x += dd[d];
                y += dd[d + 1];
                return false;
            }
            Console.WriteLine('F');
            x += dd[d];
            y += dd[d + 1];
            s = sc.Str;
            Console.WriteLine(c);
            d = (d + ((c == 'R') ? 1 : 3)) % 4;
            return false;

        }

        static void swap<T>(ref T a, ref T b)
        {
            var t = a;
            a = b;
            b = t;
        }

        static bool isprime(long n)
        {
            if (n == 1) return false;

            for (long i = 2; i * i <= n; i++)
                if (n % i == 0)
                    return false;

            return true;
        }

        static string strsort(string s)
        {
            var c = s.ToCharArray();
            Array.Sort(c);
            return string.Join("", c);
        }
        static string strswap(string s, int i, int j)
        {
            var c = s.ToCharArray();
            c[i] = s[j];
            c[j] = s[i];
            return string.Join("", c);
        }

        static T[] copy<T>(T[] a)
        {
            var ret = new T[a.Length];
            for (int i = 0; i < a.Length; i++) ret[i] = a[i];
            return ret;
        }
    }
    class Scan
    {
        public int Int { get { return int.Parse(Console.ReadLine().Trim()); } }
        public long Long { get { return long.Parse(Console.ReadLine().Trim()); } }
        public string Str { get { return Console.ReadLine().Trim(); } }
        public int[] IntArr { get { return Console.ReadLine().Trim().Split().Select(int.Parse).ToArray(); } }
        public int[] IntArrWithSep(char sep) { return Console.ReadLine().Trim().Split(sep).Select(int.Parse).ToArray(); }
        public long[] LongArr { get { return Console.ReadLine().Trim().Split().Select(long.Parse).ToArray(); } }
        public double[] DoubleArr { get { return Console.ReadLine().Split().Select(double.Parse).ToArray(); } }
        public string[] StrArr { get { return Console.ReadLine().Trim().Split(); } }
        public List<int> IntList { get { return Console.ReadLine().Trim().Split().Select(int.Parse).ToList(); } }
        public List<long> LongList { get { return Console.ReadLine().Trim().Split().Select(long.Parse).ToList(); } }
        public void Multi(out int a, out int b) { var arr = IntArr; a = arr[0]; b = arr[1]; }
        public void Multi(out int a, out int b, out int c) { var arr = IntArr; a = arr[0]; b = arr[1]; c = arr[2]; }
        public void Multi(out int a, out int b, out int c, out int d) { var arr = IntArr; a = arr[0]; b = arr[1]; c = arr[2]; d = arr[3]; }
        public void Multi(out int a, out string b) { var arr = StrArr; a = int.Parse(arr[0]); b = arr[1]; }
        public void Multi(out int a, out int b, out string c) { var arr = StrArr; a = int.Parse(arr[0]); b = int.Parse(arr[1]); c = arr[2]; }
        public void Multi(out int a, out char b) { var arr = StrArr; a = int.Parse(arr[0]); b = arr[1][0]; }
        public void Multi(out char a, out int b) { var arr = StrArr; a = arr[0][0]; b = int.Parse(arr[1]); }
        public void Multi(out long a, out long b) { var arr = LongArr; a = arr[0]; b = arr[1]; }
        public void Multi(out long a, out int b) { var arr = LongArr; a = arr[0]; b = (int)arr[1]; }
        public void Multi(out int a, out long b) { var arr = LongArr; a = (int)arr[0]; b = arr[1]; }
        public void Multi(out string a, out string b) { var arr = StrArr; a = arr[0]; b = arr[1]; }
    }
    class mymath
    {
        public bool isprime(long a)
        {
            if (a < 2) return false;
            for (long i = 2; i * i <= a; i++)
                if (a % i == 0)
                    return false;

            return true;
        }
        public long powmod(long a, long b, long M)
        {
            if (a == 0) return 0;
            if (b == 0) return 1;
            if (b == 1) return a % M;

            var t = powmod(a, b / 2, M);

            if ((b & 1) == 0) return t * t % M;
            else return t * t % M * a % M;
        }
        public long gcd(long a, long b)
        {
            while (b != 0)
            {
                var t = a % b;
                a = b;
                b = t;
            }
            return a;
        }
        public long lcm(int a, int b) { return a * (long)b / gcd(a, b); }
    }
}
0