結果

問題 No.1017 Reiwa Sequence
ユーザー fgwiebfaoishfgwiebfaoish
提出日時 2020-06-18 16:59:06
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 483 ms / 2,000 ms
コード長 3,412 bytes
コンパイル時間 2,511 ms
コンパイル使用メモリ 117,612 KB
実行使用メモリ 45,340 KB
最終ジャッジ日時 2024-07-03 12:53:08
合計ジャッジ時間 40,080 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
19,584 KB
testcase_01 AC 27 ms
19,456 KB
testcase_02 AC 28 ms
19,584 KB
testcase_03 AC 29 ms
19,584 KB
testcase_04 AC 29 ms
19,840 KB
testcase_05 AC 28 ms
19,328 KB
testcase_06 AC 31 ms
19,712 KB
testcase_07 AC 29 ms
19,712 KB
testcase_08 AC 27 ms
19,584 KB
testcase_09 AC 30 ms
20,352 KB
testcase_10 AC 69 ms
25,472 KB
testcase_11 AC 30 ms
20,096 KB
testcase_12 AC 403 ms
43,904 KB
testcase_13 AC 444 ms
43,904 KB
testcase_14 AC 30 ms
20,352 KB
testcase_15 AC 30 ms
20,352 KB
testcase_16 AC 30 ms
19,968 KB
testcase_17 AC 36 ms
23,132 KB
testcase_18 AC 30 ms
20,224 KB
testcase_19 AC 165 ms
25,600 KB
testcase_20 AC 163 ms
25,472 KB
testcase_21 AC 156 ms
24,320 KB
testcase_22 AC 159 ms
25,600 KB
testcase_23 AC 172 ms
24,576 KB
testcase_24 AC 157 ms
24,448 KB
testcase_25 AC 157 ms
24,320 KB
testcase_26 AC 158 ms
24,320 KB
testcase_27 AC 83 ms
25,472 KB
testcase_28 AC 65 ms
25,472 KB
testcase_29 AC 95 ms
25,600 KB
testcase_30 AC 116 ms
24,576 KB
testcase_31 AC 62 ms
25,472 KB
testcase_32 AC 65 ms
24,448 KB
testcase_33 AC 73 ms
24,192 KB
testcase_34 AC 67 ms
23,916 KB
testcase_35 AC 64 ms
23,920 KB
testcase_36 AC 66 ms
24,064 KB
testcase_37 AC 67 ms
23,672 KB
testcase_38 AC 66 ms
23,748 KB
testcase_39 AC 68 ms
24,192 KB
testcase_40 AC 439 ms
41,472 KB
testcase_41 AC 449 ms
41,216 KB
testcase_42 AC 429 ms
41,088 KB
testcase_43 AC 442 ms
41,216 KB
testcase_44 AC 425 ms
33,024 KB
testcase_45 AC 432 ms
41,600 KB
testcase_46 AC 442 ms
41,344 KB
testcase_47 AC 439 ms
38,400 KB
testcase_48 AC 483 ms
45,340 KB
testcase_49 AC 445 ms
38,400 KB
testcase_50 AC 473 ms
39,680 KB
testcase_51 AC 21 ms
17,792 KB
testcase_52 AC 102 ms
24,012 KB
testcase_53 AC 98 ms
25,600 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.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;
		if(n==1){
			Console.WriteLine("No");
			return;
		}
		var a=sc.Ia;
		int m=Min(n,22);
		var b=new int[m>>1];
		var c=new int[m-(m>>1)];
		for(int i = 0;i<m>>1;i++) {b[i]=a[i];}
		for(int i = m>>1;i<m;i++) {c[i-(m>>1)]=a[i];}
		int g=(int)Pow(3,b.Length);
		var hs=new Dictionary<int,string>();
		for(int i = 0;i<g;i++) {
			var t=Pn(i,3,b.Length);
			int p=0;
			for(int j = 0;j<t.Length;j++) {p+=b[j]*((t[j]+1)%3-1);}
			if(!hs.ContainsKey(p)){hs.Add(p,t);}
			else if(long.Parse(hs[p])==0){hs[p]=t;} 
		}
		g=(int)Pow(3,c.Length);
		for(int i = 0;i<g;i++) {
			var t=Pn(i,3,c.Length);
			int p=0;
			for(int j = 0;j<t.Length;j++) {p+=c[j]*((t[j]+1)%3-1);}
			if(hs.ContainsKey(-p)&&long.Parse(hs[-p])+long.Parse(t)!=0){
				t=hs[-p]+t;
				for(int j = 0;j<t.Length;j++) {a[j]*=(t[j]+1)%3-1;}
				for(int j = t.Length;j<n;j++) {a[j]=0;}
				Console.WriteLine("Yes");
				Console.WriteLine("{0}",String.Join(" ",a));
				return;
			}
		}
		Console.WriteLine("No");
	}
	static string Pn(int x,int n,int b){
		if(x==0){return new string('0',b);}
		var t="";
		var c=new char[]{'0','1','2','3','4','5','6','7','8','9','A','B','C','D','E','F'};
		int r=1;
		while(x>0){
			r=x%n;
			t+=c[r];
			x=x/n;
		}
		return (b>t.Length?new string('0',b-t.Length):"")+string.Join("",t.Reverse());
	}
}

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;}
}
0