結果
問題 | No.1842 Decimal Point |
ユーザー | ripity |
提出日時 | 2022-02-18 21:30:58 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 1,012 ms / 2,000 ms |
コード長 | 886 bytes |
コンパイル時間 | 2,904 ms |
コンパイル使用メモリ | 74,416 KB |
実行使用メモリ | 58,568 KB |
最終ジャッジ日時 | 2024-06-29 08:21:31 |
合計ジャッジ時間 | 6,746 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 103 ms
41,608 KB |
testcase_01 | AC | 798 ms
58,216 KB |
testcase_02 | AC | 1,012 ms
58,340 KB |
testcase_03 | AC | 954 ms
58,568 KB |
testcase_04 | AC | 878 ms
58,444 KB |
ソースコード
import java.util.*; import java.io.*; public class Main { public static Scanner sc = new Scanner(System.in); public static PrintWriter pw = new PrintWriter(System.out); public static void main(String[] args) { int t = sc.nextInt(); while( t > 0 ) { solve(); t--; } pw.flush(); } static void solve() { long A = sc.nextInt(); long B = sc.nextInt(); long C = sc.nextInt(); A %= B; A *= modpow(10,C-1,B); A %= B; A *= 10; pw.println(A/B); } static long modpow( long x, long n, long mod ) { if( n == 0 ) { return 1; } long k = 1; while( n > 1 ) { if( n%2 == 1 ) k *= x; x *= x; n /= 2; x %= mod; k %= mod; } return (k*x)%mod; } }