結果

問題 No.1632 Sorting Integers (GCD of M)
ユーザー 👑 tatt61880tatt61880
提出日時 2021-07-30 22:30:56
言語 Kuin
(KuinC++ v.2021.9.17)
結果
WA  
実行時間 -
コード長 1,555 bytes
コンパイル時間 2,898 ms
コンパイル使用メモリ 157,236 KB
実行使用メモリ 813,864 KB
最終ジャッジ日時 2023-10-14 18:39:30
合計ジャッジ時間 8,550 ms
ジャッジサーバーID
(参考情報)
judge15 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
4,372 KB
testcase_01 AC 2 ms
4,372 KB
testcase_02 AC 2 ms
4,372 KB
testcase_03 AC 2 ms
4,380 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 2 ms
4,372 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 AC 2 ms
4,372 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 2 ms
4,372 KB
testcase_21 WA -
testcase_22 WA -
testcase_23 AC 2 ms
4,372 KB
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 AC 2 ms
4,368 KB
testcase_28 WA -
testcase_29 AC 2 ms
4,372 KB
testcase_30 AC 2 ms
4,372 KB
testcase_31 AC 2 ms
4,368 KB
testcase_32 WA -
testcase_33 AC 2 ms
4,376 KB
testcase_34 WA -
testcase_35 WA -
testcase_36 AC 2 ms
4,372 KB
testcase_37 WA -
testcase_38 WA -
testcase_39 WA -
testcase_40 WA -
testcase_41 WA -
testcase_42 AC 2 ms
4,368 KB
testcase_43 WA -
testcase_44 WA -
testcase_45 WA -
testcase_46 WA -
testcase_47 AC 2 ms
4,372 KB
testcase_48 WA -
testcase_49 WA -
testcase_50 WA -
testcase_51 WA -
testcase_52 AC 2 ms
4,372 KB
testcase_53 WA -
testcase_54 WA -
testcase_55 WA -
testcase_56 WA -
testcase_57 WA -
testcase_58 WA -
testcase_59 MLE -
testcase_60 -- -
testcase_61 -- -
testcase_62 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

func main()
	var n: int :: cui@inputInt()
	var a: []int :: #[10]int
	var sum: int :: 0
	var f2: bool :: true
	var f4: bool :: true
	for i(1, 9)
		do a[i] :: cui@inputInt()
		if(a[i] <> 0)
			if(i % 2 <> 0)
				do f2 :: false
			end if
			if(i % 4 <> 0)
				do f4 :: false
			end if
		end if
		if(a[i] = n)
			do cui@print("\{['0'.offset(i)].repeat(n)}\n")
			ret
		end if
		do sum :+ a[i]
	end for
	
	if(n < 6)
		var b: []int :: #[n]int
		var j: int :: 0
		for i(1, 9)
			for(1, a[i])
				do b[j] :: i
				do j :+ 1
			end for
		end for
		var ans: int :: f(b)
		while(@permutationNext(b), skip)
			do ans :: math@gcd(ans, f(b))
		end while
		do cui@print("\{ans}\n")
		ret
	end if
	
	var ans: int :: 1
	if(sum % 9 = 0)
		do ans :: 9
	elif(sum % 3 = 0)
		do ans :: 3
	end if
	if(f4)
		do ans :* 4
	elif(f2)
		do ans :* 2
	end if
	
	do cui@print("\{ans}\n")
	
	func f(b: []int): int
		var res: int :: 0
		for i(0, ^b - 1)
			do res :* 10
			do res :+ b[i]
		end for
		ret res
	end func
end func

func permutationNext(array: []int): bool
	var left: int :: ^array - 2
	while(left >= 0 & array[left] >= array[left + 1])
		do left :- 1
	end while
	if(left < 0)
		ret false
	end if
	var right: int :: ^array - 1
	while(array[left] >= array[right])
		do right :- 1
	end while
	var tmp: int :: array[left]
	do array[left] :: array[right]
	do array[right] :: tmp
	do left :+ 1
	do right :: ^array - 1
	while(left < right)
		do tmp :: array[left]
		do array[left] :: array[right]
		do array[right] :: tmp
		do left :+ 1
		do right :- 1
	end while
	ret true
end func
0