結果
問題 | No.473 和と積の和 |
ユーザー | kuuso1 |
提出日時 | 2016-12-23 04:11:24 |
言語 | C#(csc) (csc 3.9.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 2,398 bytes |
コンパイル時間 | 1,310 ms |
コンパイル使用メモリ | 114,736 KB |
実行使用メモリ | 45,824 KB |
最終ジャッジ日時 | 2024-12-16 03:05:22 |
合計ジャッジ時間 | 53,102 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 33 ms
33,108 KB |
testcase_01 | AC | 32 ms
25,344 KB |
testcase_02 | AC | 30 ms
24,832 KB |
testcase_03 | TLE | - |
testcase_04 | AC | 32 ms
24,960 KB |
testcase_05 | AC | 34 ms
45,696 KB |
testcase_06 | AC | 31 ms
25,088 KB |
testcase_07 | AC | 33 ms
45,440 KB |
testcase_08 | AC | 30 ms
25,344 KB |
testcase_09 | AC | 33 ms
45,312 KB |
testcase_10 | AC | 33 ms
25,088 KB |
testcase_11 | AC | 33 ms
45,312 KB |
testcase_12 | AC | 35 ms
25,088 KB |
testcase_13 | AC | 36 ms
44,928 KB |
testcase_14 | AC | 35 ms
24,832 KB |
testcase_15 | AC | 35 ms
45,568 KB |
testcase_16 | AC | 36 ms
25,088 KB |
testcase_17 | AC | 36 ms
45,440 KB |
testcase_18 | AC | 34 ms
24,960 KB |
testcase_19 | AC | 34 ms
45,184 KB |
testcase_20 | AC | 34 ms
25,216 KB |
testcase_21 | AC | 32 ms
45,696 KB |
testcase_22 | AC | 31 ms
24,960 KB |
testcase_23 | AC | 100 ms
22,784 KB |
testcase_24 | AC | 236 ms
24,144 KB |
testcase_25 | TLE | - |
testcase_26 | TLE | - |
testcase_27 | TLE | - |
testcase_28 | AC | 35 ms
19,968 KB |
testcase_29 | AC | 156 ms
23,880 KB |
testcase_30 | AC | 135 ms
24,192 KB |
testcase_31 | AC | 111 ms
23,936 KB |
testcase_32 | AC | 88 ms
23,936 KB |
testcase_33 | AC | 37 ms
20,352 KB |
testcase_34 | TLE | - |
testcase_35 | TLE | - |
testcase_36 | AC | 202 ms
24,280 KB |
testcase_37 | AC | 45 ms
21,120 KB |
testcase_38 | TLE | - |
testcase_39 | TLE | - |
testcase_40 | TLE | - |
testcase_41 | TLE | - |
testcase_42 | AC | 40 ms
20,224 KB |
testcase_43 | TLE | - |
testcase_44 | TLE | - |
testcase_45 | AC | 34 ms
19,968 KB |
testcase_46 | AC | 33 ms
45,824 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; using System.Collections.Generic; using System.Linq; using System.Text; class TEST{ static void Main(){ Sol mySol =new Sol(); mySol.Solve(); } } class Sol{ public void Solve(){ HashSet<MSet> H = new HashSet<MSet>(); var pp = new MSet(); pp.Add(X); H.Add(pp); for(int i=1;i<N;i++){ HashSet<MSet> nxt = new HashSet<MSet>(); foreach(var p in H){ for(int j=0;j<p.Count;j++){ if(j>0 && p[j] == p[j-1]) continue; int k = p[j]; for(int t=2;t*t<=k+1;t++){ if((k+1)%t != 0) continue; var q = new MSet(p); q.Push(t-1,(k+1)/t-1,j); nxt.Add(q); } } } H = nxt; } Console.WriteLine(H.Count); } class MSet{ public List<int> L; int hash; public int Count{ get{ return L.Count;} } public MSet(IEnumerable<int> l){ L = new List<int>(l); L.Sort(); hash = L.Aggregate( (s,t) => s^t ); } public MSet(){ L = new List<int>(); hash = 0; } public MSet(MSet p){ L = new List<int>(p.L); hash = p.hash; } public int this[int idx]{ get {return L[idx];} } public void Add(int x){ L.Add(x); L.Sort(); hash ^= x; } public void Push(int x,int y,int idx){ L[idx] = x; L.Add(y); L.Sort(); } public override bool Equals(System.Object obj){ if(obj == null) return false; MSet p = (MSet) obj; if((System.Object) p == null ) return false; return chkEqual(p); } bool chkEqual(MSet p){ if(p.Count != L.Count)return false; for(int i=0;i<L.Count;i++){ if(p.L[i] != L[i]) return false; } return true; } public override int GetHashCode(){ return hash; } } int N; int X; public Sol(){ var d = ria(); N = d[0]; X = d[1]; } static String rs(){return Console.ReadLine();} static int ri(){return int.Parse(Console.ReadLine());} static long rl(){return long.Parse(Console.ReadLine());} static double rd(){return double.Parse(Console.ReadLine());} static String[] rsa(char sep=' '){return Console.ReadLine().Split(sep);} static int[] ria(char sep=' '){return Array.ConvertAll(Console.ReadLine().Split(sep),e=>int.Parse(e));} static long[] rla(char sep=' '){return Array.ConvertAll(Console.ReadLine().Split(sep),e=>long.Parse(e));} static double[] rda(char sep=' '){return Array.ConvertAll(Console.ReadLine().Split(sep),e=>double.Parse(e));} }