結果

問題 No.1842 Decimal Point
ユーザー tentententen
提出日時 2022-07-27 14:02:29
言語 Java21
(openjdk 21)
結果
AC  
実行時間 408 ms / 2,000 ms
コード長 1,461 bytes
コンパイル時間 4,040 ms
コンパイル使用メモリ 74,684 KB
実行使用メモリ 58,864 KB
最終ジャッジ日時 2023-09-23 19:37:18
合計ジャッジ時間 6,814 ms
ジャッジサーバーID
(参考情報)
judge14 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
49,168 KB
testcase_01 AC 308 ms
58,720 KB
testcase_02 AC 408 ms
58,748 KB
testcase_03 AC 393 ms
56,252 KB
testcase_04 AC 376 ms
58,864 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;

public class Main {
    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner();
        int t = sc.nextInt();
        StringBuilder sb = new StringBuilder();
        while (t-- > 0) {
            long a = sc.nextInt();
            long b = sc.nextInt();
            long c = sc.nextInt();
            long d = a * powmod(10, c - 1, b) % b * 10;
            sb.append(d / b).append("\n");
        }
        System.out.print(sb);
    }
    
    static long powmod(long x, long p, long m) {
        if (p == 0) {
            return 1;
        } else if (p % 2 == 0) {
            return powmod(x * x % m, p / 2, m);
        } else {
            return powmod(x, p - 1, m) * x % m;
        }
    }
}
class Scanner {
    BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
    StringTokenizer st = new StringTokenizer("");
    
    public Scanner() throws Exception {
        
    }
    
    public int nextInt() throws Exception {
        return Integer.parseInt(next());
    }
    
    public long nextLong() throws Exception {
        return Long.parseLong(next());
    }
    
    public double nextDouble() throws Exception {
        return Double.parseDouble(next());
    }
    
    public String next() throws Exception {
        while (!st.hasMoreTokens()) {
            st = new StringTokenizer(br.readLine());
        }
        return st.nextToken();
    }
}
0