結果

問題 No.1580 I like Logarithm!
ユーザー tatt61880tatt61880
提出日時 2021-07-11 21:51:24
言語 Kuin
(KuinC++ v.2021.9.17)
結果
AC  
実行時間 235 ms / 2,000 ms
コード長 564 bytes
コンパイル時間 2,224 ms
コンパイル使用メモリ 145,380 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-09-16 12:40:31
合計ジャッジ時間 8,670 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 1 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 78 ms
5,376 KB
testcase_07 AC 192 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 12 ms
5,376 KB
testcase_10 AC 23 ms
5,376 KB
testcase_11 AC 119 ms
5,376 KB
testcase_12 AC 134 ms
5,376 KB
testcase_13 AC 98 ms
5,376 KB
testcase_14 AC 189 ms
5,376 KB
testcase_15 AC 144 ms
5,376 KB
testcase_16 AC 1 ms
5,376 KB
testcase_17 AC 1 ms
5,376 KB
testcase_18 AC 2 ms
5,376 KB
testcase_19 AC 2 ms
5,376 KB
testcase_20 AC 1 ms
5,376 KB
testcase_21 AC 1 ms
5,376 KB
testcase_22 AC 1 ms
5,376 KB
testcase_23 AC 2 ms
5,376 KB
testcase_24 AC 1 ms
5,376 KB
testcase_25 AC 1 ms
5,376 KB
testcase_26 AC 206 ms
5,376 KB
testcase_27 AC 199 ms
5,376 KB
testcase_28 AC 204 ms
5,376 KB
testcase_29 AC 200 ms
5,376 KB
testcase_30 AC 200 ms
5,376 KB
testcase_31 AC 204 ms
5,376 KB
testcase_32 AC 206 ms
5,376 KB
testcase_33 AC 216 ms
5,376 KB
testcase_34 AC 215 ms
5,376 KB
testcase_35 AC 196 ms
5,376 KB
testcase_36 AC 187 ms
5,376 KB
testcase_37 AC 197 ms
5,376 KB
testcase_38 AC 204 ms
5,376 KB
testcase_39 AC 201 ms
5,376 KB
testcase_40 AC 208 ms
5,376 KB
testcase_41 AC 202 ms
5,376 KB
testcase_42 AC 235 ms
5,376 KB
testcase_43 AC 208 ms
5,376 KB
testcase_44 AC 206 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

func main()
	const mod: int :: 1000000007
	var a: int :: cui@inputInt()
	var b: []char :: cui@input()
	
	var n: int :: ^b - 1
	var ans: int :: 0
	for i(1, n)
		if(i <> n)
			do ans :+ mod - math@modPow(a, i, mod)
			do ans :% mod
		else
			do ans :+ (n - 1) * math@modPow(a, i, mod)
			do ans :% mod
		end if
	end for
	
	do ans :+ mod - n * (math@modPow(a, n, mod) - 1) % mod
	do ans :% mod
	
	var t: int :: 0
	for i(0, n)
		do t :* a
		do t :+ b[i] $ int - '0' $ int
		do t :% mod
	end for
	do ans :+ t * n % mod
	do ans :% mod
	do cui@print("\{ans}\n")
end func
0