結果

問題 No.2608 Divide into two
ユーザー ID 21712ID 21712
提出日時 2024-11-11 21:02:53
言語 Go
(1.22.1)
結果
AC  
実行時間 4 ms / 1,000 ms
コード長 635 bytes
コンパイル時間 11,439 ms
コンパイル使用メモリ 225,304 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-11-11 21:03:06
合計ジャッジ時間 12,254 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 4 ms
5,248 KB
testcase_01 AC 4 ms
5,248 KB
testcase_02 AC 4 ms
5,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package main

import . "fmt"

var dp [101][100*101/2+1]int
var ans [101]string

func init() {
	const c=1e5
	dp[0][0]=c
	for n:=0;n<100;n++ {
		for i,x:=range dp[n][:] {
			if x==0 {
				continue
			}
			dp[n+1][i]=x
			k:=i+n+1
			if k<len(dp[n+1]) {
				dp[n+1][k]=c+n+1
			}
		} 
	}
	s:=""
	for n:=1;n<=100;n++ {
		s+="0"
		ans[n]="-1"
		t:=(n+1)*n/2
		if t%2!=0 {
			continue
		}
		t/=2
		if dp[n][t]==0 {
			continue
		}
		b:=[]byte(s)
		x:=dp[n][t]
		for x>c {
			p:=x-c
			t-=p
			b[p-1]++
			x=dp[p][t]
		}
		ans[n]=string(b)
	}
}

func main() {
	var t int
	Scan(&t)
	for ;t>0;t-- {
		var n int
		Scan(&n)
		Println(ans[n])
	}
}
0