結果

問題 No.858 わり算
ユーザー shigeki_createshigeki_create
提出日時 2019-08-15 03:03:12
言語 Java21
(openjdk 21)
結果
AC  
実行時間 129 ms / 2,000 ms
コード長 466 bytes
コンパイル時間 1,878 ms
コンパイル使用メモリ 76,764 KB
実行使用メモリ 41,820 KB
最終ジャッジ日時 2024-09-19 14:46:32
合計ジャッジ時間 3,545 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 117 ms
40,480 KB
testcase_01 AC 129 ms
41,368 KB
testcase_02 AC 119 ms
40,432 KB
testcase_03 AC 126 ms
40,464 KB
testcase_04 AC 128 ms
41,820 KB
testcase_05 AC 125 ms
41,484 KB
testcase_06 AC 116 ms
40,524 KB
testcase_07 AC 120 ms
40,280 KB
testcase_08 AC 128 ms
41,396 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);

		long A = sc.nextLong();
		long B = sc.nextLong();

		print(A/B + ".");

		A = A - A/B*B;

		for(int i=0; i<50; i++) {
			A = A*10;
			int result = (int) (A/B);
			print(result);
			A = A - result*B;
		}
	}

	public static void print(Object o) {
		System.out.print(o);
	}

	public static void println(Object o) {
		System.out.println(o);
	}
}
0