結果

問題 No.858 わり算
ユーザー shinwisteriashinwisteria
提出日時 2019-08-30 11:25:19
言語 Java21
(openjdk 21)
結果
AC  
実行時間 135 ms / 2,000 ms
コード長 418 bytes
コンパイル時間 3,463 ms
コンパイル使用メモリ 74,732 KB
実行使用メモリ 41,428 KB
最終ジャッジ日時 2024-11-20 19:44:39
合計ジャッジ時間 5,337 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 133 ms
41,268 KB
testcase_01 AC 133 ms
41,428 KB
testcase_02 AC 134 ms
41,228 KB
testcase_03 AC 120 ms
39,944 KB
testcase_04 AC 135 ms
41,312 KB
testcase_05 AC 133 ms
41,224 KB
testcase_06 AC 133 ms
41,324 KB
testcase_07 AC 135 ms
41,388 KB
testcase_08 AC 135 ms
41,112 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package con_level_1half;
import java.util.Scanner;

public class Con858 {

	public static void main(String[] args) {
		Scanner s = new Scanner(System.in);
		long A = s.nextLong() , B = s.nextLong();
		s.close();

		StringBuilder stb = new StringBuilder();
		stb.append(A/B);
		stb.append(".");
		long r = A%B * 10;
		for(int i = 0;i < 50;i++){
			stb.append(r/B);
			r = r%B * 10;
		}
		System.out.println(stb);
	}

}
0