結果

問題 No.1915 Addition
ユーザー tatt61880tatt61880
提出日時 2023-03-13 22:44:03
言語 Kuin
(KuinC++ v.2021.9.17)
結果
WA  
実行時間 -
コード長 224 bytes
コンパイル時間 1,979 ms
コンパイル使用メモリ 146,284 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-09-18 07:48:45
合計ジャッジ時間 3,100 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 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 + 1) $ float) + 1.0) + 0.1) $ int - n - 1
		do cui@print("\{ans}\n")
	end for
end func
0