結果

問題 No.25 有限小数
ユーザー ゴリポン先生ゴリポン先生
提出日時 2024-02-06 21:31:42
言語 D
(dmd 2.106.1)
結果
WA  
実行時間 -
コード長 478 bytes
コンパイル時間 4,093 ms
コンパイル使用メモリ 165,460 KB
実行使用メモリ 6,676 KB
最終ジャッジ日時 2024-02-06 21:31:48
合計ジャッジ時間 4,985 ms
ジャッジサーバーID
(参考情報)
judge11 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,676 KB
testcase_01 AC 1 ms
6,676 KB
testcase_02 AC 1 ms
6,676 KB
testcase_03 AC 1 ms
6,676 KB
testcase_04 AC 1 ms
6,676 KB
testcase_05 AC 1 ms
6,676 KB
testcase_06 AC 1 ms
6,676 KB
testcase_07 AC 1 ms
6,676 KB
testcase_08 AC 1 ms
6,676 KB
testcase_09 AC 1 ms
6,676 KB
testcase_10 AC 1 ms
6,676 KB
testcase_11 AC 1 ms
6,676 KB
testcase_12 AC 1 ms
6,676 KB
testcase_13 AC 1 ms
6,676 KB
testcase_14 AC 1 ms
6,676 KB
testcase_15 AC 1 ms
6,676 KB
testcase_16 AC 1 ms
6,676 KB
testcase_17 AC 1 ms
6,676 KB
testcase_18 AC 1 ms
6,676 KB
testcase_19 AC 1 ms
6,676 KB
testcase_20 AC 1 ms
6,676 KB
testcase_21 AC 1 ms
6,676 KB
testcase_22 WA -
testcase_23 AC 1 ms
6,676 KB
testcase_24 AC 1 ms
6,676 KB
testcase_25 AC 1 ms
6,676 KB
testcase_26 AC 1 ms
6,676 KB
testcase_27 AC 2 ms
6,676 KB
testcase_28 AC 1 ms
6,676 KB
testcase_29 AC 1 ms
6,676 KB
testcase_30 AC 1 ms
6,676 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

module main;

import std;

void main()
{
	auto N = readln.chomp.to!ulong;
	auto M = readln.chomp.to!ulong;
	if (M == 1uL) {
		while (N % 10 == 0)
			N /= 10;
		writeln(N % 10);
		return;
	}
	while (M % 10 == 0) M /= 10;
	auto L = M;
	while (L % 2 == 0) L >>= 1;
	while (L % 5 == 0) L /= 5;
	if (L != 1uL) {
		writeln(-1);
		return;
	}
	BigInt A = N, B = M, Q, R;
	do {
		divMod(A, B, Q, R);
		A = R * 10;
	} while (R != 0);
	writeln(Q.toDecimalString().stripRight("0")[$-1]);
}
0