結果

問題 No.1915 Addition
ユーザー tatt61880tatt61880
提出日時 2023-03-13 22:41:36
言語 Kuin
(KuinC++ v.2021.9.17)
結果
WA  
実行時間 -
コード長 305 bytes
コンパイル時間 1,874 ms
コンパイル使用メモリ 144,888 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-09-18 07:48:42
合計ジャッジ時間 3,208 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 1
other WA * 10
権限があれば一括ダウンロードができます

ソースコード

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