結果

問題 No.858 わり算
ユーザー tentententen
提出日時 2024-07-04 18:34:36
言語 Java
(openjdk 23)
結果
AC  
実行時間 60 ms / 2,000 ms
コード長 1,393 bytes
コンパイル時間 5,205 ms
コンパイル使用メモリ 80,692 KB
実行使用メモリ 51,204 KB
最終ジャッジ日時 2025-01-07 14:58:10
合計ジャッジ時間 4,055 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 57 ms
50,940 KB
testcase_01 AC 56 ms
51,200 KB
testcase_02 AC 57 ms
50,824 KB
testcase_03 AC 58 ms
51,068 KB
testcase_04 AC 60 ms
51,204 KB
testcase_05 AC 58 ms
50,796 KB
testcase_06 AC 58 ms
51,016 KB
testcase_07 AC 59 ms
50,944 KB
testcase_08 AC 59 ms
50,812 KB
testcase_09 AC 58 ms
51,016 KB
testcase_10 AC 58 ms
51,088 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;
import java.util.function.*;
import java.util.stream.*;

public class Main {
    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner();
        long a = sc.nextInt();
        long b = sc.nextInt();
        StringBuilder sb = new StringBuilder();
        sb.append(a / b).append(".");
        a %= b;
        for (int i = 0; i < 50; i++) {
            a *= 10;
            sb.append(a / b);
            a %= b;
        }
        System.out.println(sb);
    }
}
class Scanner {
    BufferedReader br;
    StringTokenizer st = new StringTokenizer("");
    StringBuilder sb = new StringBuilder();
    
    public Scanner() {
        try {
            br = new BufferedReader(new InputStreamReader(System.in));
        } catch (Exception e) {
            
        }
    }
    
    public int nextInt() {
        return Integer.parseInt(next());
    }
    
    public long nextLong() {
        return Long.parseLong(next());
    }
    
    public double nextDouble() {
        return Double.parseDouble(next());
    }
    
    public String next() {
        try {
            while (!st.hasMoreTokens()) {
                st = new StringTokenizer(br.readLine());
            }
        } catch (Exception e) {
            e.printStackTrace();
        } finally {
            return st.nextToken();
        }
    }
    
}


0