結果
問題 | No.1842 Decimal Point |
ユーザー |
![]() |
提出日時 | 2022-02-19 11:27:56 |
言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
結果 |
RE
|
実行時間 | - |
コード長 | 203 bytes |
コンパイル時間 | 677 ms |
コンパイル使用メモリ | 12,288 KB |
実行使用メモリ | 10,624 KB |
最終ジャッジ日時 | 2024-06-29 10:21:42 |
合計ジャッジ時間 | 1,432 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | RE * 5 |
ソースコード
import sys def LI(): return list(map(int, sys.stdin.readline().split())) def solve(): a, b, c = LI() r = a*pow(10, c-1, b)%b ans = r*10//b print(ans) for _ in range(II()): solve()