結果

問題 No.858 わり算
ユーザー tentententen
提出日時 2024-07-04 18:34:36
言語 Java21
(openjdk 21)
結果
AC  
実行時間 63 ms / 2,000 ms
コード長 1,393 bytes
コンパイル時間 2,884 ms
コンパイル使用メモリ 78,388 KB
実行使用メモリ 37,104 KB
最終ジャッジ日時 2024-07-04 18:34:40
合計ジャッジ時間 3,246 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
36,976 KB
testcase_01 AC 46 ms
36,992 KB
testcase_02 AC 47 ms
36,840 KB
testcase_03 AC 63 ms
36,744 KB
testcase_04 AC 46 ms
37,104 KB
testcase_05 AC 45 ms
36,804 KB
testcase_06 AC 44 ms
37,048 KB
testcase_07 AC 44 ms
36,868 KB
testcase_08 AC 45 ms
37,040 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