結果

問題 No.128 お年玉(1)
ユーザー leaf+leaf+
提出日時 2019-04-13 14:20:46
言語 C++11
(gcc 13.3.0)
結果
WA  
実行時間 -
コード長 194 bytes
コンパイル時間 620 ms
コンパイル使用メモリ 55,540 KB
実行使用メモリ 6,820 KB
最終ジャッジ日時 2024-10-01 11:02:41
合計ジャッジ時間 1,308 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 5 WA * 16
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
using namespace std;
int main() {
    double n;
    int m, ans;
    cin >> n >> m;
    ans = n / m;
    ans /= 1000;
    ans *= 1000;
    cout << ans << endl;
    return 0;
}
0