結果

問題 No.2051 Divide
ユーザー first_vilfirst_vil
提出日時 2022-09-21 17:22:06
言語 Bash
(Bash 5.1.16)
結果
AC  
実行時間 114 ms / 2,000 ms
コード長 176 bytes
コンパイル時間 194 ms
コンパイル使用メモリ 6,944 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-06-01 17:28:47
合計ジャッジ時間 2,574 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,812 KB
testcase_01 AC 1 ms
6,944 KB
testcase_02 AC 19 ms
6,940 KB
testcase_03 AC 9 ms
6,944 KB
testcase_04 AC 6 ms
6,940 KB
testcase_05 AC 45 ms
6,940 KB
testcase_06 AC 77 ms
6,944 KB
testcase_07 AC 64 ms
6,940 KB
testcase_08 AC 50 ms
6,944 KB
testcase_09 AC 30 ms
6,944 KB
testcase_10 AC 13 ms
6,940 KB
testcase_11 AC 27 ms
6,940 KB
testcase_12 AC 112 ms
6,944 KB
testcase_13 AC 32 ms
6,940 KB
testcase_14 AC 66 ms
6,940 KB
testcase_15 AC 109 ms
6,940 KB
testcase_16 AC 9 ms
6,940 KB
testcase_17 AC 102 ms
6,944 KB
testcase_18 AC 66 ms
6,940 KB
testcase_19 AC 47 ms
6,944 KB
testcase_20 AC 31 ms
6,940 KB
testcase_21 AC 10 ms
6,944 KB
testcase_22 AC 51 ms
6,940 KB
testcase_23 AC 114 ms
6,944 KB
testcase_24 AC 106 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

read a b
c=0
for ((i=1; i*i <= a; i++)) ; do
	if ((a%i==0)); then
		if ((i%b==0)); then
			c=$((c+1))
		fi
		if ((i*i!=a && a/i%b==0)); then
			c=$((c+1))
		fi
	fi
done
echo $c
0