結果

問題 No.420 mod2漸化式
ユーザー eitahoeitaho
提出日時 2016-09-09 22:41:55
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 58 ms / 1,000 ms
コード長 4,024 bytes
コンパイル時間 2,388 ms
コンパイル使用メモリ 108,100 KB
実行使用メモリ 22,840 KB
最終ジャッジ日時 2023-08-25 23:13:18
合計ジャッジ時間 6,672 ms
ジャッジサーバーID
(参考情報)
judge14 / judge11
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 57 ms
20,788 KB
testcase_01 AC 56 ms
20,676 KB
testcase_02 AC 56 ms
20,740 KB
testcase_03 AC 58 ms
20,920 KB
testcase_04 AC 56 ms
20,780 KB
testcase_05 AC 56 ms
20,864 KB
testcase_06 AC 57 ms
20,744 KB
testcase_07 AC 57 ms
22,776 KB
testcase_08 AC 57 ms
20,920 KB
testcase_09 AC 58 ms
20,928 KB
testcase_10 AC 58 ms
22,768 KB
testcase_11 AC 57 ms
20,784 KB
testcase_12 AC 57 ms
20,668 KB
testcase_13 AC 57 ms
20,876 KB
testcase_14 AC 58 ms
22,780 KB
testcase_15 AC 58 ms
22,836 KB
testcase_16 AC 58 ms
20,856 KB
testcase_17 AC 57 ms
20,848 KB
testcase_18 AC 57 ms
20,820 KB
testcase_19 AC 57 ms
20,864 KB
testcase_20 AC 57 ms
20,872 KB
testcase_21 AC 57 ms
18,760 KB
testcase_22 AC 57 ms
20,792 KB
testcase_23 AC 57 ms
20,728 KB
testcase_24 AC 58 ms
20,924 KB
testcase_25 AC 56 ms
20,808 KB
testcase_26 AC 57 ms
20,728 KB
testcase_27 AC 57 ms
22,840 KB
testcase_28 AC 58 ms
20,840 KB
testcase_29 AC 57 ms
18,736 KB
testcase_30 AC 57 ms
20,676 KB
testcase_31 AC 57 ms
22,824 KB
testcase_32 AC 58 ms
20,748 KB
testcase_33 AC 55 ms
20,684 KB
testcase_34 AC 56 ms
20,816 KB
testcase_35 AC 55 ms
20,792 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc)
Copyright (C) Microsoft Corporation. All rights reserved.

ソースコード

diff #

using System;
using System.IO;
using System.Linq;
using System.Text;
using System.Text.RegularExpressions;
using System.Collections.Generic;
using System.Diagnostics;
using Enu = System.Linq.Enumerable;

public class Program
{
    static readonly long[][] Nums = 
    {
      new long[] { 1, 0 },
      new long[] {  31 ,2147483647                    },
      new long[] {  465, 64424509410                  },
      new long[] {  4495, 934155386445                },
      new long[] {  31465, 8718783606820              },
      new long[] {  169911, 58851789346035            },
      new long[] {  736281, 306029304599382           },
      new long[] {  2629575, 1275122102497425         },
      new long[] {  7888725, 4371847208562600         },
      new long[] {  20160075, 12569060724617475       },
      new long[] {  44352165, 30724370660176050       },
      new long[] {  84672315, 64521178386369705       },
      new long[] {  141120525, 117311233429763100     },
      new long[] {  206253075, 185742786263791575     },
      new long[] {  265182525, 257182319442172950     },
      new long[] {  300540195, 312292816465495725     },
      new long[] {  300540195, 333112337563195440     },
      new long[] {  265182525, 312292816465495725     },
      new long[] {  206253075, 257182319442172950     },
      new long[] {  141120525, 185742786263791575     },
      new long[] {  84672315, 117311233429763100      },
      new long[] {  44352165, 64521178386369705       },
      new long[] {  20160075, 30724370660176050       },
      new long[] {  7888725, 12569060724617475        },
      new long[] {  2629575, 4371847208562600         },
      new long[] {  736281, 1275122102497425          },
      new long[] {  169911, 306029304599382           },
      new long[] {  31465, 58851789346035             },
      new long[] {  4495, 8718783606820               },
      new long[] {  465, 934155386445                 },
      new long[] {  31, 64424509410                   },
      new long[] {  1, 2147483647                     },
    };

    public void Solve()
    {
        int X = Reader.Int();
        if (X >= 32) { Console.WriteLine("0 0"); return; }
        Console.WriteLine(Nums[X][0] + " " + Nums[X][1]);
    }
}

class Entry { static void Main() { new Program().Solve(); } }
class Reader
{
    static TextReader reader = Console.In;
    static readonly char[] separator = { ' ' };
    static readonly StringSplitOptions op = StringSplitOptions.RemoveEmptyEntries;
    static string[] A = new string[0];
    static int i;
    static void Init() { A = new string[0]; }
    public static void Set(TextReader r) { reader = r; Init(); }
    public static void Set(string file) { reader = new StreamReader(file); Init(); }
    public static bool HasNext() { return CheckNext(); }
    public static string String() { return Next(); }
    public static int Int() { return int.Parse(Next()); }
    public static long Long() { return long.Parse(Next()); }
    public static double Double() { return double.Parse(Next()); }
    public static int[] IntLine() { return Array.ConvertAll(Split(Line()), int.Parse); }
    public static int[] IntArray(int N) { return Range(N, Int); }
    public static int[][] IntTable(int H) { return Range(H, IntLine); }
    public static string[] StringArray(int N) { return Range(N, Next); }
    public static string[][] StringTable(int N) { return Range(N, () => Split(Line())); }
    public static string Line() { return reader.ReadLine().Trim(); }
    static string[] Split(string s) { return s.Split(separator, op); }
    static T[] Range<T>(int N, Func<T> f) { var r = new T[N]; for (int i = 0; i < N; r[i++] = f()) ; return r; }
    static string Next() { CheckNext(); return A[i++]; }
    static bool CheckNext()
    {
        if (i < A.Length) return true;
        string line = reader.ReadLine();
        if (line == null) return false;
        if (line == "") return CheckNext();
        A = Split(line);
        i = 0;
        return true;
    }
}
0