結果
問題 | No.873 バイナリ、ヤバいなり!w |
ユーザー | fgwiebfaoish |
提出日時 | 2020-06-12 12:33:03 |
言語 | C#(csc) (csc 3.9.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 3,070 bytes |
コンパイル時間 | 1,081 ms |
コンパイル使用メモリ | 118,284 KB |
実行使用メモリ | 29,252 KB |
最終ジャッジ日時 | 2024-06-24 03:46:43 |
合計ジャッジ時間 | 11,610 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | AC | 28 ms
24,780 KB |
testcase_06 | AC | 31 ms
25,228 KB |
testcase_07 | AC | 29 ms
23,216 KB |
testcase_08 | AC | 258 ms
27,444 KB |
testcase_09 | AC | 28 ms
25,036 KB |
testcase_10 | AC | 30 ms
26,872 KB |
testcase_11 | AC | 28 ms
26,872 KB |
testcase_12 | AC | 87 ms
25,072 KB |
testcase_13 | AC | 31 ms
26,876 KB |
testcase_14 | AC | 31 ms
24,908 KB |
testcase_15 | AC | 29 ms
27,136 KB |
testcase_16 | AC | 29 ms
25,036 KB |
testcase_17 | AC | 30 ms
26,880 KB |
testcase_18 | AC | 29 ms
24,968 KB |
testcase_19 | WA | - |
testcase_20 | AC | 29 ms
23,220 KB |
testcase_21 | AC | 29 ms
24,848 KB |
testcase_22 | AC | 29 ms
26,820 KB |
testcase_23 | AC | 29 ms
24,908 KB |
testcase_24 | AC | 29 ms
24,912 KB |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | AC | 29 ms
24,648 KB |
testcase_28 | AC | 29 ms
26,880 KB |
testcase_29 | WA | - |
testcase_30 | WA | - |
testcase_31 | WA | - |
testcase_32 | AC | 58 ms
27,100 KB |
testcase_33 | AC | 34 ms
25,020 KB |
testcase_34 | WA | - |
testcase_35 | WA | - |
testcase_36 | WA | - |
testcase_37 | WA | - |
testcase_38 | WA | - |
コンパイルメッセージ
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.Collections; using System.Collections.Specialized; using System.Linq; using System.Text; using System.IO; using System.Reflection; using static System.Math; using System.Numerics; //using nint=System.Int32; static class Program{ const int mod=(int)1e9+7; const double eps=1e-11; static void Main(){ Sc sc=new Sc(); var n=sc.I; var dp1=new int[n+1]; var dp2=new int[n+1]; var dp3=new int[n+1]; for(int i = 1;i<=n;i++) { dp1[i]=int.MaxValue; for(int j = 1;j*j<=i;j++) { if(dp1[i]>dp1[i-j*j]+1){ dp1[i]=dp1[i-j*j]+1; dp2[i]=i-j*j; dp3[i]=Fu(dp3[i-j*j],j); } else if(dp1[i]==dp1[i-j*j]+1&&dp3[i]!=Fu(Fu(dp3[i-j*j],j),dp3[i])){ dp2[i]=i-j*j; dp3[i]=Fu(dp3[i-j*j],j); } } } int p=n; var h=new int[dp1[p]]; for(int i = 0;p!=0;i++) { h[i]=(int)Sqrt(p-dp2[p]); p=dp2[p]; } Array.Sort(h,(u,v)=>v==Fu(v,u)?1:-1); StringBuilder sb=new StringBuilder(); for(int i = 0,k=1;i<h.Length;i++) { var c=new int[h[i]]; for(int j = k;j<h[i];j+=2) {c[j]=1;} sb.Append(String.Join("",c).ToArray()); k=h[i]&1; } Console.WriteLine(sb); int Fu(int a,int b) { if((a&1)==1&&(b&1)==0){return a;} if((a&1)==0&&(b&1)==1){return b;} if((a&1)==0&&(b&1)==0){return Max(a,b);} return Min(a,b); } } } public class Sc{ public int I{get{return int.Parse(Console.ReadLine());}} public long L{get{return long.Parse(Console.ReadLine());}} public double D{get{return double.Parse(Console.ReadLine());}} public string S{get{return Console.ReadLine();}} public int[] Ia{get{return Array.ConvertAll(Console.ReadLine().Split(),int.Parse);}} public long[] La{get{return Array.ConvertAll(Console.ReadLine().Split(),long.Parse);}} public double[] Da{get{return Array.ConvertAll(Console.ReadLine().Split(),double.Parse);}} public string[] Sa{get{return Console.ReadLine().Split();}} public object[] Oa{get{return Console.ReadLine().Split();}} public int[] Ia2{get{return Array.ConvertAll(("0 "+Console.ReadLine()+" 0").Split(),int.Parse);}} public int[] Ia3(string a,string b){return Array.ConvertAll((a+Console.ReadLine()+b).Split(),int.Parse);} public long[] La2{get{return Array.ConvertAll(("0 "+Console.ReadLine()+" 0").Split(),long.Parse);}} public long[] La3(string a,string b){return Array.ConvertAll((a+Console.ReadLine()+b).Split(),long.Parse);} public double[] Da2{get{return Array.ConvertAll(("0 "+Console.ReadLine()+" 0").Split(),double.Parse);}} public double[] Da3(string a,string b){return Array.ConvertAll((a+Console.ReadLine()+b).Split(),double.Parse);} public T[] Arr<T>(int n,Func<T> f){var a=new T[n];for(int i=0;i<n;i++){a[i]=f();}return a;} public T[] Arr<T>(int n,Func<int,T> f){var a=new T[n];for(int i=0;i<n;i++){a[i]=f(i);}return a;} public T[] Arr<T>(int n,Func<string[],T> f){var a=new T[n];for(int i=0;i<n;i++){a[i]=f(Console.ReadLine().Split());}return a;} public T[] Arr<T>(int n,Func<int,string[],T> f){var a=new T[n];for(int i=0;i<n;i++){a[i]=f(i,Console.ReadLine().Split());}return a;} }