結果
問題 | No.858 わり算 |
ユーザー | kpinkcat |
提出日時 | 2023-08-22 16:37:22 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 394 bytes |
コンパイル時間 | 1,203 ms |
コンパイル使用メモリ | 104,084 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-05-09 22:25:16 |
合計ジャッジ時間 | 1,721 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | AC | 2 ms
5,376 KB |
testcase_04 | AC | 2 ms
5,376 KB |
testcase_05 | WA | - |
testcase_06 | AC | 2 ms
5,376 KB |
testcase_07 | AC | 3 ms
5,376 KB |
testcase_08 | AC | 2 ms
5,376 KB |
ソースコード
#include<iostream> #include<map> #include<vector> #include <algorithm> #include<math.h> #include <iomanip> #include<set> #include <numeric> using namespace std; int main() { int a, b, r, i=0; cin >> a >> b; string s = ""; while (i < 51){ s += to_string(a/b); if (i == 0) s += "."; r = a%b; a = r*10; i++; } cout << s << endl; }