結果

問題 No.858 わり算
ユーザー shinwisteriashinwisteria
提出日時 2019-08-30 11:18:40
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 414 bytes
コンパイル時間 3,399 ms
コンパイル使用メモリ 74,648 KB
実行使用メモリ 53,960 KB
最終ジャッジ日時 2024-11-20 19:37:27
合計ジャッジ時間 5,310 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 136 ms
41,420 KB
testcase_01 AC 121 ms
40,236 KB
testcase_02 AC 136 ms
41,596 KB
testcase_03 AC 134 ms
41,372 KB
testcase_04 AC 133 ms
41,568 KB
testcase_05 WA -
testcase_06 AC 122 ms
40,116 KB
testcase_07 AC 133 ms
41,380 KB
testcase_08 AC 134 ms
41,280 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);
		int A = s.nextInt() , B = s.nextInt();
		s.close();

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

}
0