結果

問題 No.331 CodeRunnerでやれ
ユーザー くれちーくれちー
提出日時 2017-07-28 00:41:23
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 2,592 ms / 5,000 ms
コード長 942 bytes
コンパイル時間 1,147 ms
コンパイル使用メモリ 109,740 KB
実行使用メモリ 43,320 KB
平均クエリ数 5066.00
最終ジャッジ日時 2024-07-17 01:22:36
合計ジャッジ時間 21,117 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 191 ms
40,980 KB
testcase_01 AC 222 ms
41,024 KB
testcase_02 AC 279 ms
41,052 KB
testcase_03 AC 250 ms
42,816 KB
testcase_04 AC 247 ms
40,968 KB
testcase_05 AC 273 ms
41,476 KB
testcase_06 AC 421 ms
40,648 KB
testcase_07 AC 349 ms
40,768 KB
testcase_08 AC 379 ms
41,140 KB
testcase_09 AC 906 ms
41,228 KB
testcase_10 AC 462 ms
41,524 KB
testcase_11 AC 1,288 ms
41,036 KB
testcase_12 AC 1,702 ms
43,192 KB
testcase_13 AC 1,904 ms
41,176 KB
testcase_14 AC 908 ms
43,076 KB
testcase_15 AC 550 ms
41,416 KB
testcase_16 AC 2,592 ms
43,320 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

using System;
using System.Collections;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Numerics;
using System.Text;
using static System.Console;
using static System.Convert;
using static System.Math;
using static Extentions;

static class Extentions
{
}

static class Program
{
    public static void Main()
    {
        var sw = new StreamWriter(OpenStandardOutput()) { NewLine = "\n" };
        sw.AutoFlush = true;
        SetOut(sw);
        Solve();
    }

    static void Solve()
    {
        var rand = new Random();
        string s;

        while ((s = ReadLine())[0] != 'M')
        {
            var n = int.Parse(s);
            if (n == 20151224)  WriteLine('F');
            else if (n == 0 || rand.Next() % 4 == 0)
            {
                if (rand.Next() % 2 == 0) WriteLine('L');
                else WriteLine('R');
            }
            else WriteLine('F');
        }
    }
}
0