結果
問題 | No.420 mod2漸化式 |
ユーザー | eitaho |
提出日時 | 2016-09-09 22:41:55 |
言語 | C#(csc) (csc 3.9.0) |
結果 |
AC
|
実行時間 | 24 ms / 1,000 ms |
コード長 | 4,024 bytes |
コンパイル時間 | 2,531 ms |
コンパイル使用メモリ | 108,160 KB |
実行使用メモリ | 17,920 KB |
最終ジャッジ日時 | 2024-06-06 18:02:10 |
合計ジャッジ時間 | 2,823 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 22 ms
17,792 KB |
testcase_01 | AC | 22 ms
17,664 KB |
testcase_02 | AC | 22 ms
17,792 KB |
testcase_03 | AC | 22 ms
17,664 KB |
testcase_04 | AC | 22 ms
17,664 KB |
testcase_05 | AC | 22 ms
17,664 KB |
testcase_06 | AC | 21 ms
17,664 KB |
testcase_07 | AC | 22 ms
17,664 KB |
testcase_08 | AC | 22 ms
17,792 KB |
testcase_09 | AC | 21 ms
17,792 KB |
testcase_10 | AC | 22 ms
17,792 KB |
testcase_11 | AC | 22 ms
17,792 KB |
testcase_12 | AC | 21 ms
17,792 KB |
testcase_13 | AC | 22 ms
17,664 KB |
testcase_14 | AC | 22 ms
17,792 KB |
testcase_15 | AC | 22 ms
17,536 KB |
testcase_16 | AC | 22 ms
17,792 KB |
testcase_17 | AC | 22 ms
17,792 KB |
testcase_18 | AC | 22 ms
17,920 KB |
testcase_19 | AC | 22 ms
17,792 KB |
testcase_20 | AC | 22 ms
17,920 KB |
testcase_21 | AC | 23 ms
17,792 KB |
testcase_22 | AC | 22 ms
17,664 KB |
testcase_23 | AC | 22 ms
17,792 KB |
testcase_24 | AC | 23 ms
17,664 KB |
testcase_25 | AC | 22 ms
17,792 KB |
testcase_26 | AC | 22 ms
17,920 KB |
testcase_27 | AC | 22 ms
17,792 KB |
testcase_28 | AC | 22 ms
17,792 KB |
testcase_29 | AC | 24 ms
17,792 KB |
testcase_30 | AC | 23 ms
17,792 KB |
testcase_31 | AC | 23 ms
17,536 KB |
testcase_32 | AC | 23 ms
17,792 KB |
testcase_33 | AC | 23 ms
17,792 KB |
testcase_34 | AC | 22 ms
17,792 KB |
testcase_35 | AC | 22 ms
17,664 KB |
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc) Copyright (C) Microsoft Corporation. All rights reserved.
ソースコード
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; } }