結果

問題 No.1915 Addition
ユーザー 👑 tatt61880tatt61880
提出日時 2023-03-13 22:41:36
言語 Kuin
(KuinC++ v.2021.9.17)
結果
WA  
実行時間 -
コード長 305 bytes
コンパイル時間 2,063 ms
コンパイル使用メモリ 145,508 KB
実行使用メモリ 4,388 KB
最終ジャッジ日時 2023-10-18 11:23:58
合計ジャッジ時間 3,991 ms
ジャッジサーバーID
(参考情報)
judge12 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
4,348 KB
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

func main()
	var t: int :: cui@inputInt()
	for(1, t)
		var n: int :: cui@inputInt()
		var ans: int :: (10.0 ^ lib@floor(lib@log(10.0, n $ float) + 1.0) + 0.1) $ int - n - 1
		;do cui@print("\{(10.0 ^ lib@floor(lib@log(10.0, n $ float) + 1.0) + 0.1) $ int}\n")
		do cui@print("\{ans}\n")
	end for
end func
0