結果

問題 No.2051 Divide
ユーザー tatt61880tatt61880
提出日時 2023-03-12 11:56:43
言語 Kuin
(KuinC++ v.2021.9.17)
結果
TLE  
実行時間 -
コード長 204 bytes
コンパイル時間 3,234 ms
コンパイル使用メモリ 146,036 KB
実行使用メモリ 10,624 KB
最終ジャッジ日時 2024-09-18 07:00:33
合計ジャッジ時間 10,429 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
10,624 KB
testcase_01 AC 1 ms
5,376 KB
testcase_02 AC 73 ms
5,376 KB
testcase_03 AC 18 ms
5,376 KB
testcase_04 AC 8 ms
5,376 KB
testcase_05 AC 451 ms
5,376 KB
testcase_06 AC 1,387 ms
5,376 KB
testcase_07 AC 982 ms
5,376 KB
testcase_08 AC 588 ms
5,376 KB
testcase_09 AC 186 ms
5,376 KB
testcase_10 AC 35 ms
5,376 KB
testcase_11 AC 162 ms
5,376 KB
testcase_12 TLE -
testcase_13 AC 232 ms
6,944 KB
testcase_14 AC 953 ms
6,944 KB
testcase_15 TLE -
testcase_16 AC 17 ms
6,944 KB
testcase_17 TLE -
testcase_18 AC 1,038 ms
6,948 KB
testcase_19 AC 526 ms
6,944 KB
testcase_20 AC 227 ms
6,944 KB
testcase_21 AC 21 ms
6,944 KB
testcase_22 AC 648 ms
6,944 KB
testcase_23 TLE -
testcase_24 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

func main()
	var a: int :: cui@inputInt()
	var b: int :: cui@inputInt()
	
	var ans: int :: 0
	for i(1, a)
		if(a % i = 0 & i % b = 0)
			do ans :+ 1
		end if
	end for
	
	do cui@print("\{ans}\n")
end func
0