結果
問題 | No.331 CodeRunnerでやれ |
ユーザー | くれちー |
提出日時 | 2017-07-28 00:38:27 |
言語 | C#(csc) (csc 3.9.0) |
結果 |
TLE
(最新)
AC
(最初)
|
実行時間 | - |
コード長 | 942 bytes |
コンパイル時間 | 996 ms |
コンパイル使用メモリ | 112,500 KB |
実行使用メモリ | 109,352 KB |
平均クエリ数 | 568.18 |
最終ジャッジ日時 | 2024-07-17 01:20:55 |
合計ジャッジ時間 | 11,825 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 170 ms
41,416 KB |
testcase_01 | AC | 190 ms
42,944 KB |
testcase_02 | AC | 233 ms
39,048 KB |
testcase_03 | AC | 328 ms
42,816 KB |
testcase_04 | AC | 178 ms
43,188 KB |
testcase_05 | AC | 216 ms
41,352 KB |
testcase_06 | AC | 258 ms
41,404 KB |
testcase_07 | AC | 235 ms
41,532 KB |
testcase_08 | AC | 410 ms
41,480 KB |
testcase_09 | AC | 468 ms
41,280 KB |
testcase_10 | AC | 317 ms
43,300 KB |
testcase_11 | TLE | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
ソースコード
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() % 7 == 0) { if (rand.Next() % 2 == 0) WriteLine('L'); else WriteLine('R'); } else WriteLine('F'); } } }