結果
問題 | No.1842 Decimal Point |
ユーザー | tenten |
提出日時 | 2022-07-27 14:02:29 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 417 ms / 2,000 ms |
コード長 | 1,461 bytes |
コンパイル時間 | 2,179 ms |
コンパイル使用メモリ | 77,664 KB |
実行使用メモリ | 58,748 KB |
最終ジャッジ日時 | 2024-07-16 19:26:45 |
合計ジャッジ時間 | 5,025 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 51 ms
50,312 KB |
testcase_01 | AC | 283 ms
58,556 KB |
testcase_02 | AC | 412 ms
58,456 KB |
testcase_03 | AC | 417 ms
58,748 KB |
testcase_04 | AC | 390 ms
58,732 KB |
ソースコード
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(); } }