結果

問題 No.128 お年玉(1)
ユーザー YSRKENYSRKEN
提出日時 2015-10-04 01:55:27
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 2 ms / 5,000 ms
コード長 585 bytes
コンパイル時間 473 ms
コンパイル使用メモリ 52,368 KB
実行使用メモリ 4,388 KB
最終ジャッジ日時 2023-07-24 14:57:52
合計ジャッジ時間 1,493 ms
ジャッジサーバーID
(参考情報)
judge11 / judge15
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
4,384 KB
testcase_01 AC 1 ms
4,384 KB
testcase_02 AC 1 ms
4,380 KB
testcase_03 AC 1 ms
4,384 KB
testcase_04 AC 2 ms
4,384 KB
testcase_05 AC 2 ms
4,384 KB
testcase_06 AC 1 ms
4,380 KB
testcase_07 AC 1 ms
4,384 KB
testcase_08 AC 2 ms
4,384 KB
testcase_09 AC 1 ms
4,384 KB
testcase_10 AC 1 ms
4,384 KB
testcase_11 AC 2 ms
4,384 KB
testcase_12 AC 2 ms
4,384 KB
testcase_13 AC 2 ms
4,384 KB
testcase_14 AC 1 ms
4,384 KB
testcase_15 AC 1 ms
4,380 KB
testcase_16 AC 1 ms
4,384 KB
testcase_17 AC 1 ms
4,384 KB
testcase_18 AC 2 ms
4,380 KB
testcase_19 AC 2 ms
4,388 KB
testcase_20 AC 2 ms
4,384 KB
testcase_21 AC 2 ms
4,384 KB
testcase_22 AC 2 ms
4,384 KB
testcase_23 AC 2 ms
4,384 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <limits>
/*
Yasuoは、予算がN円しかないが、親戚の子供M人にお年玉をあげたいと思っている。
お年玉の中の種類は1000円紙幣だけにしたいと思っているが、平等(すべて同じ金額)でかつ最大の金額をあげたいと思っています。
この時、一人分になる金額を求めてください。
*/
using namespace std;
int main(){
    unsigned long long int n,m,ans;
    cin >> n >> m;
    
    	ans = n/m;
        ans = (ans/1000)*1000;
        cout << ans << endl;
   	
   return 0;
}
0