結果
問題 | No.420 mod2漸化式 |
ユーザー | 14番 |
提出日時 | 2016-09-10 08:10:56 |
言語 | C#(csc) (csc 3.9.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,905 bytes |
コンパイル時間 | 950 ms |
コンパイル使用メモリ | 117,528 KB |
実行使用メモリ | 126,456 KB |
最終ジャッジ日時 | 2024-11-16 19:45:18 |
合計ジャッジ時間 | 43,440 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 283 ms
45,856 KB |
testcase_01 | TLE | - |
testcase_02 | AC | 25 ms
24,192 KB |
testcase_03 | AC | 28 ms
84,604 KB |
testcase_04 | AC | 37 ms
28,032 KB |
testcase_05 | AC | 82 ms
97,008 KB |
testcase_06 | AC | 26 ms
23,552 KB |
testcase_07 | TLE | - |
testcase_08 | TLE | - |
testcase_09 | TLE | - |
testcase_10 | TLE | - |
testcase_11 | TLE | - |
testcase_12 | TLE | - |
testcase_13 | TLE | - |
testcase_14 | TLE | - |
testcase_15 | TLE | - |
testcase_16 | TLE | - |
testcase_17 | TLE | - |
testcase_18 | TLE | - |
testcase_19 | TLE | - |
testcase_20 | TLE | - |
testcase_21 | TLE | - |
testcase_22 | TLE | - |
testcase_23 | TLE | - |
testcase_24 | TLE | - |
testcase_25 | TLE | - |
testcase_26 | AC | 989 ms
51,204 KB |
testcase_27 | AC | 264 ms
40,524 KB |
testcase_28 | AC | 75 ms
28,288 KB |
testcase_29 | AC | 37 ms
22,940 KB |
testcase_30 | AC | 28 ms
20,224 KB |
testcase_31 | AC | 26 ms
18,688 KB |
testcase_32 | AC | 24 ms
18,688 KB |
testcase_33 | AC | 24 ms
18,304 KB |
testcase_34 | AC | 23 ms
18,432 KB |
testcase_35 | AC | 24 ms
77,236 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.Collections.Generic; using System.Text; using System.Linq; class Program { public void Proc() { Reader.IsDebug = false; this.TargetCount = int.Parse(Reader.ReadLine()); List<long> ret = this.GetAns(0,0); Console.WriteLine(ret.Count + " " + ret.Sum(a=>a)); } private long TargetCount; private List<long> GetAns(int idx, int cnt) { List<long> ret = new List<long>(); if(idx >= 31) { if(cnt == TargetCount) { ret.Add(0); } return ret; } if(cnt > this.TargetCount) { return ret; } if(TargetCount - cnt > 31 - idx) { return ret; } List<long> tmp = this.GetAns(idx + 1, cnt); List<long> tmp2 = this.GetAns(idx + 1, cnt + 1); ret.AddRange(tmp); tmp2.ForEach(a=>ret.Add(a + (1<<idx))); return ret; } private long GetNum(int num) { if(dic.ContainsKey(num)) { return dic[num]; } long ans = this.GetNum(num / 2) + (num % 2); dic.Add(num, ans); return ans; } private Dictionary<int, long> dic = new Dictionary<int, long>(); public class Reader { public static bool IsDebug = true; private static String PlainInput = @" 6 "; private static System.IO.StringReader Sr = null; public static string ReadLine() { if (IsDebug) { if (Sr == null) { Sr = new System.IO.StringReader(PlainInput.Trim()); } return Sr.ReadLine(); } else { return Console.ReadLine(); } } } static void Main() { Program prg = new Program(); prg.Proc(); } }