結果

問題 No.2051 Divide
ユーザー tatt61880tatt61880
提出日時 2023-03-12 11:58:12
言語 Kuin
(KuinC++ v.2021.9.17)
結果
TLE  
実行時間 -
コード長 225 bytes
コンパイル時間 2,090 ms
コンパイル使用メモリ 145,636 KB
実行使用メモリ 10,652 KB
最終ジャッジ日時 2024-09-18 07:00:46
合計ジャッジ時間 9,837 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,816 KB
testcase_01 AC 1 ms
6,940 KB
testcase_02 AC 1 ms
6,944 KB
testcase_03 AC 1 ms
6,944 KB
testcase_04 AC 1 ms
6,944 KB
testcase_05 AC 1 ms
6,940 KB
testcase_06 AC 1 ms
6,940 KB
testcase_07 AC 1 ms
6,940 KB
testcase_08 AC 2 ms
6,940 KB
testcase_09 AC 2 ms
6,940 KB
testcase_10 AC 1 ms
6,940 KB
testcase_11 AC 2 ms
6,940 KB
testcase_12 AC 1 ms
6,940 KB
testcase_13 AC 2 ms
6,940 KB
testcase_14 AC 1 ms
6,940 KB
testcase_15 AC 1 ms
6,944 KB
testcase_16 AC 1 ms
6,944 KB
testcase_17 TLE -
testcase_18 AC 448 ms
6,940 KB
testcase_19 AC 462 ms
6,940 KB
testcase_20 AC 67 ms
6,940 KB
testcase_21 AC 5 ms
6,944 KB
testcase_22 AC 190 ms
6,940 KB
testcase_23 TLE -
testcase_24 AC 1,123 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

func main()
	var a: int :: cui@inputInt()
	var b: int :: cui@inputInt()
	
	var ans: int :: 0
	var x: int :: b
	while(x <= a)
		if(a % x = 0)
			do ans :+ 1
		end if
		do x :+ b
	end while
	
	do cui@print("\{ans}\n")
end func
0