結果

問題 No.858 わり算
ユーザー 👑 KazunKazun
提出日時 2021-07-22 01:39:22
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 47 ms / 2,000 ms
コード長 139 bytes
コンパイル時間 148 ms
コンパイル使用メモリ 82,332 KB
実行使用メモリ 53,256 KB
最終ジャッジ日時 2025-01-05 15:09:01
合計ジャッジ時間 1,005 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
53,256 KB
testcase_01 AC 32 ms
52,688 KB
testcase_02 AC 33 ms
52,652 KB
testcase_03 AC 31 ms
52,640 KB
testcase_04 AC 33 ms
52,548 KB
testcase_05 AC 32 ms
52,940 KB
testcase_06 AC 47 ms
52,152 KB
testcase_07 AC 31 ms
53,152 KB
testcase_08 AC 33 ms
52,248 KB
testcase_09 AC 33 ms
52,088 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

A,B=map(int,input().split())

Q,r=divmod(A,B)
X=[]
for _ in range(60):
    q,r=divmod(10*r,B)
    X.append(q)

print(Q,".",*X[:50],sep="")
0