結果
問題 | No.858 わり算 |
ユーザー | Konton7 |
提出日時 | 2020-06-04 13:02:24 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 462 bytes |
コンパイル時間 | 85 ms |
コンパイル使用メモリ | 12,416 KB |
実行使用メモリ | 10,880 KB |
最終ジャッジ日時 | 2024-05-06 10:33:14 |
合計ジャッジ時間 | 860 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
ソースコード
a, b = map(int, input().split()) ans = "" d = 1 for i in range(10): if a > 10 * b: b *= 10 d += 1 for i in range(d): c = 0 for j in range(10): if a >= b: a -= b c += 1 a *= 10 print(c) ans += str(c) ans += "." for i in range(50): c = 0 for j in range(10): if a >= b: a -= b c += 1 a *= 10 print(c) ans += str(c) print(ans)