結果

問題 No.128 お年玉(1)
ユーザー east1016
提出日時 2020-04-27 19:05:20
言語 C++17(gcc12)
(gcc 12.3.0 + boost 1.87.0)
結果
RE  
実行時間 -
コード長 136 bytes
コンパイル時間 1,634 ms
コンパイル使用メモリ 85,732 KB
最終ジャッジ日時 2025-01-10 02:34:42
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 5 RE * 16
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>

using namespace std;

int main(){
    int a,b;
    cin >> a >> b;
    a/=1000;
    cout << a/b *1000 << endl;
    
}
0