結果

問題 No.128 お年玉(1)
ユーザー 古寺いろは
提出日時 2015-04-05 22:43:28
言語 C++11(廃止可能性あり)
(gcc 13.3.0)
結果
RE  
実行時間 -
コード長 134 bytes
コンパイル時間 1,285 ms
コンパイル使用メモリ 157,928 KB
実行使用メモリ 6,824 KB
最終ジャッジ日時 2024-10-01 09:52:04
合計ジャッジ時間 3,914 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 5 RE * 16
権限があれば一括ダウンロードができます

ソースコード

diff #

#include "bits/stdc++.h"
using namespace std;


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